From 82c8447db8998194f4d8b3e391a906610926a98d Mon Sep 17 00:00:00 2001 From: CN_SZTL Date: Tue, 14 Apr 2020 23:56:07 +0800 Subject: [PATCH] target: make TESTING_KERNEL selectable --- config/Config-build.in | 8 ++++++++ target/Config.in | 3 +++ 2 files changed, 11 insertions(+) diff --git a/config/Config-build.in b/config/Config-build.in index 53a9cab804..e2f7940d9f 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -47,6 +47,14 @@ menu "Global build settings" comment "General build options" + config TESTING_KERNEL + bool "Use the testing kernel version" + depends on HAS_TESTING_KERNEL + default n + help + If the target supports a newer kernel version than the default, + you can use this config option to enable it + config DISPLAY_SUPPORT bool "Show packages that require graphics support (local or remote)" default n diff --git a/target/Config.in b/target/Config.in index 3cf4231f2a..3ee23ebf7f 100644 --- a/target/Config.in +++ b/target/Config.in @@ -2,6 +2,9 @@ source "tmp/.config-target.in" # Kernel/Hardware features +config HAS_TESTING_KERNEL + bool + config HAS_SPE_FPU depends on powerpc select HAS_FPU