diff options
author | Chris Zankel <chris@zankel.net> | 2008-10-21 09:11:43 -0700 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2008-10-21 09:11:43 -0700 |
commit | 0025427eee4b5c005b4ac7a6489adc773e38611d (patch) | |
tree | 01ce298ee2a4ae1430451d2ef3e4df888334a9c4 /arch/xtensa | |
parent | 00c81d23d330207d0fb99ca0c6682265d287816c (diff) | |
download | op-kernel-dev-0025427eee4b5c005b4ac7a6489adc773e38611d.zip op-kernel-dev-0025427eee4b5c005b4ac7a6489adc773e38611d.tar.gz |
xtensa: Add config files for Diamond 232L - Rev B processor variant
The Diamond 232L processor is a pre-configured Xtensa processor tailored
for Linux application.
Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/Kconfig | 7 | ||||
-rw-r--r-- | arch/xtensa/Makefile | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 02e417d..2369ec6 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig @@ -63,7 +63,12 @@ choice default XTENSA_VARIANT_FSF config XTENSA_VARIANT_FSF - bool "fsf" + bool "fsf - default (not generic) configuration" + +config XTENSA_VARIANT_DC232B + bool "dc232b - Diamond 232L Standard Core Rev.B (LE)" + help + This variant refers to Tensilica's Diamond 232L Standard core Rev.B (LE). endchoice config MMU diff --git a/arch/xtensa/Makefile b/arch/xtensa/Makefile index 4bd1e14..015b6b2 100644 --- a/arch/xtensa/Makefile +++ b/arch/xtensa/Makefile @@ -14,6 +14,7 @@ # (Use VAR=<xtensa_config> to use another default compiler.) variant-$(CONFIG_XTENSA_VARIANT_FSF) := fsf +variant-$(CONFIG_XTENSA_VARIANT_DC232B) := dc232b variant-$(CONFIG_XTENSA_VARIANT_LINUX_CUSTOM) := custom VARIANT = $(variant-y) |