doc: announce support of Alpine Linux
authorThomas Monjalon <thomas@monjalon.net>
Sat, 17 Apr 2021 22:16:48 +0000 (00:16 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 21 Apr 2021 22:14:11 +0000 (00:14 +0200)
After many patches in several releases to make DPDK buildable with musl,
and few adjustments for busybox, it is time to show the support of DPDK
built in Alpine Linux.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
doc/guides/linux_gsg/sys_reqs.rst
doc/guides/rel_notes/release_21_05.rst

index dfe8f4e..6994038 100644 (file)
@@ -40,31 +40,29 @@ Compilation of the DPDK
 *   General development tools including a supported C compiler such as gcc (version 4.9+) or clang (version 3.4+).
 
     * For RHEL/Fedora systems these can be installed using ``dnf groupinstall "Development Tools"``
-
     * For Ubuntu/Debian systems these can be installed using ``apt install build-essential``
+    * For Alpine Linux, ``apk add gcc libc-dev bsd-compat-headers libexecinfo-dev``
 
 *   Python 3.5 or later.
 
 *   Meson (version 0.49.2+) and ninja
 
     * ``meson`` & ``ninja-build`` packages in most Linux distributions
-
     * If the packaged version is below the minimum version, the latest versions
       can be installed from Python's "pip" repository: ``pip3 install meson ninja``
 
 *   ``pyelftools`` (version 0.22+)
 
     * For Fedora systems it can be installed using ``dnf install python-pyelftools``
-
     * For RHEL/CentOS systems it can be installed using ``pip3 install pyelftools``
-
     * For Ubuntu/Debian it can be installed using ``apt install python3-pyelftools``
+    * For Alpine Linux, ``apk add py3-elftools``
 
 *   Library for handling NUMA (Non Uniform Memory Access).
 
     * ``numactl-devel`` in RHEL/Fedora;
-
     * ``libnuma-dev`` in Debian/Ubuntu;
+    * ``numactl-dev`` in Alpine Linux
 
 .. note::
 
index 2a1f272..b3224dc 100644 (file)
@@ -55,6 +55,11 @@ New Features
      Also, make sure to start the actual text at the margin.
      =======================================================
 
+* **Added Alpine Linux with musl libc support**
+
+  The distribution Alpine Linux, using musl libc and busybox,
+  got initial support starting with building DPDK without modification.
+
 * **Added phase-fair lock.**
 
   Phase-fair lock provides fairness guarantees.