summaryrefslogtreecommitdiff
path: root/target/config/Config.in.xtensa.choice
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-02-18 23:38:27 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-18 23:40:22 -0600
commit51131c29643b1f2be84ae9dac73931abaa44432c (patch)
treea499acd186c5fdc58fc9d283a574dd781c7ba879 /target/config/Config.in.xtensa.choice
parent552b54c30339ed78ef37a35d27f2e8c226b9814d (diff)
add support for uClibc-ng git master
Add new configs for uClibc-ng master. New symbol UCLIBC_HAS_LINUXTHREADS added. LT.new is removed in master, only LT.old and NPTL exist. CLeanup MMU/NPTL/LT support symbols. Tested with toolchain building for all supported architectures.
Diffstat (limited to 'target/config/Config.in.xtensa.choice')
-rw-r--r--target/config/Config.in.xtensa.choice22
1 files changed, 22 insertions, 0 deletions
diff --git a/target/config/Config.in.xtensa.choice b/target/config/Config.in.xtensa.choice
new file mode 100644
index 000000000..bd707cd4b
--- /dev/null
+++ b/target/config/Config.in.xtensa.choice
@@ -0,0 +1,22 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+choice ADK_TARGET_XTENSA_VARIANT
+prompt "CPU variant"
+depends on ADK_TARGET_ARCH_XTENSA
+
+config ADK_TARGET_XTENSA_DC233C
+ bool "dc233c"
+ select ADK_KERNEL_XTENSA_VARIANT_DC233C
+ select ADK_KERNEL_INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
+
+config ADK_TARGET_XTENSA_DC232B
+ bool "dc232b"
+ select ADK_KERNEL_XTENSA_VARIANT_DC232B
+
+endchoice
+
+config ADK_TARGET_XTENSA
+ string
+ default "dc233c" if ADK_TARGET_XTENSA_DC233C
+ default "dc232b" if ADK_TARGET_XTENSA_DC232B