summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Kconfig47
1 files changed, 1 insertions, 46 deletions
diff --git a/Kconfig b/Kconfig
index ce8b56f..0d4acff 100644
--- a/Kconfig
+++ b/Kconfig
@@ -24,52 +24,7 @@ config PROJECT
comment "----------------------------------"
-choice
- prompt "architecture "
-
- config ARCH_ARM
- bool "arm "
-
- config ARCH_M68K
- bool "m68k "
-
- config ARCH_MIPS
- bool "mips "
-
- config ARCH_POWERPC
- bool "powerpc"
-
- config ARCH_I386
- bool "i386 "
-
- config ARCH_AVR
- bool "AVR-8 "
-
- config ARCH_AVR32
- bool "AVR-32 "
-
- help
- This option specifies the toolchain architecture. It corresponds to
- the arch/ directory of the Linux kernel.
-
-endchoice
-
-config ARCH
- string
- default "arm" if ARCH_ARM
- default "avr" if ARCH_AVR
- default "avr32" if ARCH_AVR32
- default "m68k" if ARCH_M68K
- default "i386" if ARCH_I386
- default "mips" if ARCH_MIPS
- default "powerpc" if ARCH_POWERPC
-
-config GNU_TARGET
- string
- prompt "toolchain target"
- help
- The GNU_TARGET specifies which toolchain variant is to be
- built.
+source "workspace/rules/architecture.in"
comment "----------------------------------"