summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authorEric Andersen2004-12-11 10:56:58 +0100
committerEric Andersen2004-12-11 10:56:58 +0100
commit070e7c147b114890828b5f087430bb01306a1fe7 (patch)
tree6b39a84827c3fe129665e358ad0b95a300e04928 /Config.in
parentdo not inadvertantly create files (diff)
downloadbuildroot-070e7c147b114890828b5f087430bb01306a1fe7.tar.gz
buildroot-070e7c147b114890828b5f087430bb01306a1fe7.tar.xz
buildroot-070e7c147b114890828b5f087430bb01306a1fe7.zip
Patch from Volmat Alain adding SH3/SH3EB SH4EB support
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in16
1 files changed, 14 insertions, 2 deletions
diff --git a/Config.in b/Config.in
index df5607f92..6d702a5a8 100644
--- a/Config.in
+++ b/Config.in
@@ -36,9 +36,18 @@ config BR2_mipsel
config BR2_powerpc
bool "powerpc"
-config BR2_sh
+config BR2_sh3
+ bool "sh3"
+
+config BR2_sh3eb
+ bool "sh3eb"
+
+config BR2_sh4
bool "sh4"
+config BR2_sh4eb
+ bool "sh4eb"
+
config BR2_sparc
bool "sparc"
@@ -54,7 +63,10 @@ config BR2_ARCH
default "mips" if BR2_mips
default "mipsel" if BR2_mipsel
default "powerpc" if BR2_powerpc
- default "sh4" if BR2_sh
+ default "sh3" if BR2_sh3
+ default "sh3eb" if BR2_sh3eb
+ default "sh4" if BR2_sh4
+ default "sh4eb" if BR2_sh4eb
default "sparc" if BR2_sparc