[openwrt/openwrt] config: build: make STRIP_KERNEL_EXPORTS depend on BROKEN
LEDE Commits
lede-commits at lists.infradead.org
Sat Sep 21 07:06:15 PDT 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/0556b3fdcb241b7866f58f076f6390f9b3682659
commit 0556b3fdcb241b7866f58f076f6390f9b3682659
Author: Robert Marko <robimarko at gmail.com>
AuthorDate: Sat Sep 21 13:31:28 2024 +0200
config: build: make STRIP_KERNEL_EXPORTS depend on BROKEN
STRIP_KERNEL_EXPORTS is currently broken on kernel 6.6 and since this
is the only kernel currently supported, we should rather make it depend
on BROKEN instead of a kernel version until its fixed.
Link: https://github.com/openwrt/openwrt/pull/16440
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
config/Config-build.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/Config-build.in b/config/Config-build.in
index 02931a87c6..41c1daccd9 100644
--- a/config/Config-build.in
+++ b/config/Config-build.in
@@ -233,7 +233,7 @@ menu "Global build settings"
config STRIP_KERNEL_EXPORTS
bool "Strip unnecessary exports from the kernel image"
- depends on !LINUX_6_6
+ depends on BROKEN
help
Reduces kernel size by stripping unused kernel exports from the kernel
image. Note that this might make the kernel incompatible with any kernel
More information about the lede-commits
mailing list