From a53df67e14fa47f10abb2382d4ac6fd4c505016b Mon Sep 17 00:00:00 2001 From: Michel Machado Date: Thu, 28 Nov 2024 09:27:47 -0500 Subject: [PATCH] gatekeeper: fix dependency list in README.md The paragraph after the `apt-get install` in the section "Install Dependencies" included the package `python3-pyelftools`, but the `apt-get install` itself did not. This patch closes #719. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b81f6b2..d0cb020b 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ $ sudo apt-get -y -q install git clang devscripts doxygen libhugetlbfs-bin \ build-essential gcc-multilib linux-headers-`uname -r` libmnl0 libmnl-dev \ libkmod2 libkmod-dev libnuma-dev libelf1 libelf-dev libc6-dev-i386 \ autoconf flex bison libncurses5-dev libreadline-dev python3 \ - libcap-dev libcap2 meson ninja-build pkg-config + python3-pyelftools libcap-dev libcap2 meson ninja-build pkg-config ``` Note: Both `libmnl0` and `libmnl-dev` are needed to compile and run @@ -196,7 +196,7 @@ the folder `bpf/`. The `autoconf`, `flex`, `bison`, `libncurses5-dev`, and `libreadline-dev` packages are for BIRD. The `devscripts` package is used to build Gatekeeper Debian packages. -The packages `python` and `python3-pyelftools` are needed to build DPDK and to +The packages `python3` and `python3-pyelftools` are needed to build DPDK and to run Python scripts such as `dpdk-devbind.py`. `libcap-dev` is needed to compile Gatekeeper, but only `libcap2` is needed to run Gatekeeper.