[openwrt/openwrt] build: conditionally enable testing-kernel feature

LEDE Commits lede-commits at lists.infradead.org
Tue Jul 7 04:33:55 EDT 2020


blocktrron pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/cf6f01c0e69a31afc6c5f384405ace51e03fe481

commit cf6f01c0e69a31afc6c5f384405ace51e03fe481
Author: David Bauer <mail at david-bauer.net>
AuthorDate: Tue Jul 7 10:32:09 2020 +0200

    build: conditionally enable testing-kernel feature
    
    Only enable the testing-kernel feature for the target when the testing
    kernel version does not match the stable kernel version.
    
    This way, the option for building the testing kernel in the build config
    menu is only exposed when there's a testing kernel available.
    
    Signed-off-by: David Bauer <mail at david-bauer.net>
    Acked-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
 include/target.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/target.mk b/include/target.mk
index a2ceb7f783..64292138b7 100644
--- a/include/target.mk
+++ b/include/target.mk
@@ -223,7 +223,9 @@ ifeq ($(DUMP),1)
     .PRECIOUS: $(TMP_CONFIG)
 
     ifdef KERNEL_TESTING_PATCHVER
-      FEATURES += testing-kernel
+      ifneq ($(KERNEL_TESTING_PATCHVER),$(KERNEL_PATCHVER))
+        FEATURES += testing-kernel
+      endif
     endif
     ifneq ($(CONFIG_OF),)
       FEATURES += dt



More information about the lede-commits mailing list