summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authorPaul Mundt2005-05-03 15:56:36 +0200
committerPaul Mundt2005-05-03 15:56:36 +0200
commitc5564f7b346e8b9d7227d5e25b6324b27d02e584 (patch)
tree9de948fe3b94e7316671ff3740910d012b525ad7 /Config.in
parentLooks like the 2.16 patches should work fine for 2.15.97, and tested with a m... (diff)
downloadbuildroot-c5564f7b346e8b9d7227d5e25b6324b27d02e584.tar.gz
buildroot-c5564f7b346e8b9d7227d5e25b6324b27d02e584.tar.xz
buildroot-c5564f7b346e8b9d7227d5e25b6324b27d02e584.zip
Initial support for MS7206SE01 sh2a board.
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in53
1 files changed, 36 insertions, 17 deletions
diff --git a/Config.in b/Config.in
index eddf84d47..522106e2e 100644
--- a/Config.in
+++ b/Config.in
@@ -36,6 +36,28 @@ config BR2_mipsel
config BR2_powerpc
bool "powerpc"
+config BR2_sh
+ bool "sh"
+
+config BR2_sparc
+ bool "sparc"
+
+endchoice
+
+#
+# Keep the variants seperate, there's no need to clutter everything else.
+# sh is fairly "special" in this regard, as virtually everyone else has
+# things kept down to a _sensible_ number of target variants. No such
+# luck for sh..
+#
+choice
+ prompt "Target Architecture Variant"
+ depends BR2_sh
+ default BR2_sh4
+
+config BR2_sh2a_nofpueb
+ bool "sh2a_nofpueb"
+
config BR2_sh3
bool "sh3"
@@ -48,27 +70,24 @@ config BR2_sh4
config BR2_sh4eb
bool "sh4eb"
-config BR2_sparc
- bool "sparc"
-
endchoice
config BR2_ARCH
string
- default "arm" if BR2_arm
- default "armeb" if BR2_armeb
- default "cris" if BR2_cris
- default "i386" if BR2_i386
- default "m68k" if BR2_m68k
- default "mips" if BR2_mips
- default "mipsel" if BR2_mipsel
- default "powerpc" if BR2_powerpc
- 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
-
+ default "arm" if BR2_arm
+ default "armeb" if BR2_armeb
+ default "cris" if BR2_cris
+ default "i386" if BR2_i386
+ default "m68k" if BR2_m68k
+ default "mips" if BR2_mips
+ default "mipsel" if BR2_mipsel
+ default "powerpc" if BR2_powerpc
+ default "sh2a_nofpueb" if BR2_sh2a_nofpueb
+ 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
menu "Build options"