diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-14 16:55:10 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-14 16:55:40 +0100 |
commit | 054925c99155ab61041fc586cbc8931310998f11 (patch) | |
tree | 45d42c83509781a37cba060816df470e33711941 | |
parent | 7980ad76c8814a9a358598f6815b85d754334f66 (diff) |
hide linux kernel config for bare-metal
-rw-r--r-- | Config.in | 3 | ||||
-rw-r--r-- | target/config/Config.in.libc | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -19,8 +19,6 @@ source "target/config/Config.in.boards" source "target/config/Config.in.kernelfmt" source "target/config/Config.in.arch" source "target/config/Config.in.endian" - - source "target/config/Config.in.system" source "target/config/Config.in.systemopts" source "target/config/Config.in.subsystem" @@ -45,6 +43,7 @@ source "target/config/Config.in.runtime" endmenu menu "Linux Kernel configuration" + visible if ADK_TARGET_OS_LINUX source "target/config/Config.in.kernelversion" source "target/config/Config.in.kernelcfg" source "target/config/Config.in.kernelcmd" diff --git a/target/config/Config.in.libc b/target/config/Config.in.libc index ea98497c1..f47cd7b97 100644 --- a/target/config/Config.in.libc +++ b/target/config/Config.in.libc @@ -166,7 +166,7 @@ prompt "Threading" config ADK_TARGET_WITH_NPTL bool "enable NPTL" - depends on ADK_TARGET_SUPPORTS_NPTL && ADK_TARGET_SUPPORTS_THREADS + depends on ADK_TARGET_SUPPORTS_NPTL && ADK_TARGET_SUPPORTS_THREADS && !ADK_TARGET_LIB_NEWLIB config ADK_TARGET_WITH_LT bool "enable Linuxthreads" @@ -174,7 +174,7 @@ config ADK_TARGET_WITH_LT config ADK_TARGET_WITHOUT_THREADS bool "disable threads" - depends on ADK_TARGET_LIB_UCLIBC_NG + depends on ADK_TARGET_LIB_UCLIBC_NG || ADK_TARGET_LIB_NEWLIB endchoice |