summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Config.in3
-rw-r--r--target/config/Config.in.libc4
2 files changed, 3 insertions, 4 deletions
diff --git a/Config.in b/Config.in
index 355b96e90..3da2a5f9f 100644
--- a/Config.in
+++ b/Config.in
@@ -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