diff options
author | Robert Marko <robimarko@gmail.com> | 2024-05-15 10:43:52 +0200 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-05-16 15:12:53 +0200 |
commit | ca1c7635b911e68df74958f8f1301c7b44a61206 (patch) | |
tree | 4673a4022b73398204ae61a31754b96ba3fa4cdb /config | |
parent | 9c84d619fcf31b810cdea18d751a4418d956da81 (diff) | |
download | openwrt-ca1c7635b911e68df74958f8f1301c7b44a61206.tar.gz openwrt-ca1c7635b911e68df74958f8f1301c7b44a61206.tar.bz2 openwrt-ca1c7635b911e68df74958f8f1301c7b44a61206.zip |
config: build: dont allow STRIP_KERNEL_EXPORTS on kernel 6.6
STRIP_KERNEL_EXPORTS is currently not working on kernel 6.6 as there
have been major changes in the upstream kernel.
I have looked at it, and I dont think we can adapt the current patch to
work so until this is fixed lets prevent STRIP_KERNEL_EXPORTS from
being selected on 6.6.
Link: https://github.com/openwrt/openwrt/pull/15498
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-build.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/Config-build.in b/config/Config-build.in index 24c2bcf130..9768878572 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -228,6 +228,7 @@ menu "Global build settings" config STRIP_KERNEL_EXPORTS bool "Strip unnecessary exports from the kernel image" + depends on !LINUX_6_6 help Reduces kernel size by stripping unused kernel exports from the kernel image. Note that this might make the kernel incompatible with any kernel |