[openwrt/openwrt] kernel: bpf-headers: fix build error when testing kernel is used
LEDE Commits
lede-commits at lists.infradead.org
Sun Feb 6 03:44:05 PST 2022
aparcar pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/4d904524effc9eb0cc5094574c55d3a520803223
commit 4d904524effc9eb0cc5094574c55d3a520803223
Author: Ansuel Smith <ansuelsmth at gmail.com>
AuthorDate: Sat Jan 22 21:27:49 2022 +0100
kernel: bpf-headers: fix build error when testing kernel is used
Now that we have separate files for each kernel version,
only the version/hash for the target kernel are available.
This cause a missing hash error (and wrong kernel version) for
bpf-headers when a testing kernel version is used for the current target.
Fix this error by manually including the kernel version/hash file for the
specific kernel version requested.
Signed-off-by: Ansuel Smith <ansuelsmth at gmail.com>
---
package/kernel/bpf-headers/Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/kernel/bpf-headers/Makefile b/package/kernel/bpf-headers/Makefile
index 0f0857133a..4d603707af 100644
--- a/package/kernel/bpf-headers/Makefile
+++ b/package/kernel/bpf-headers/Makefile
@@ -14,6 +14,9 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=linux
PKG_PATCHVER:=5.10
+# Manually include kernel version and hash from kernel details file
+include $(INCLUDE_DIR)/kernel-$(PKG_PATCHVER)
+
PKG_VERSION:=$(PKG_PATCHVER)$(strip $(LINUX_VERSION-$(PKG_PATCHVER)))
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=$(LINUX_SITE)
More information about the lede-commits
mailing list