Split target/Config.in.arch into multiple Config.in.* in arch/
target/Config.in.arch had become too long, and we want to remove the
target/ directory. So let's move it to arch/ and split it this way:
* An initial Config.in that lists the top-level architecture, and
sources the arch-specific Config.in.<arch> files, as well as
Config.in.common (see below)
* One Config.in.<arch> per architecture, listing the CPU families,
ABI choices, etc.
* One Config.in.common that defines the gcc mtune, march, mcpu values
and other hidden options.
[Peter: space->tab fix, mipsel64 little endian, mips3 as noted by Arnout]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-11-03 09:27:59 +01:00
|
|
|
choice
|
|
|
|
prompt "Target Architecture Variant"
|
|
|
|
depends on BR2_sh
|
|
|
|
default BR2_sh4
|
|
|
|
help
|
|
|
|
Specific CPU variant to use
|
|
|
|
|
|
|
|
config BR2_sh2a
|
|
|
|
bool "sh2a (SH2A big endian)"
|
|
|
|
config BR2_sh4
|
|
|
|
bool "sh4 (SH4 little endian)"
|
|
|
|
config BR2_sh4eb
|
|
|
|
bool "sh4eb (SH4 big endian)"
|
|
|
|
config BR2_sh4a
|
|
|
|
bool "sh4a (SH4A little endian)"
|
|
|
|
config BR2_sh4aeb
|
|
|
|
bool "sh4aeb (SH4A big endian)"
|
|
|
|
endchoice
|
arch: improve definition of gcc mtune, mcpu, etc.
As suggested by Yann E. Morin, there is a better way than our current
big Config.in.common to define the gcc mtune, mcpu, march,
etc. values. We can split the setting of those values in each
architecture file, which makes a lot more sense.
Therefore, the Config.in file now creates empty kconfig variables
BR2_ARCH, BR2_ENDIAN, BR2_GCC_TARGET_TUNE, BR2_GCC_TARGET_ARCH,
BR2_GCC_TARGET_ABI and BR2_GCC_TARGET_CPU. The values of those
variables are set by the individual Config.in.<arch> files. This is
possible because such files are now only conditionally included
depending on the top-level architecture that has been selected.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-11-15 04:53:48 +01:00
|
|
|
|
|
|
|
config BR2_ARCH
|
|
|
|
default "sh2a" if BR2_sh2a
|
|
|
|
default "sh4" if BR2_sh4
|
|
|
|
default "sh4eb" if BR2_sh4eb
|
|
|
|
default "sh4a" if BR2_sh4a
|
|
|
|
default "sh4aeb" if BR2_sh4aeb
|
|
|
|
|
|
|
|
config BR2_ENDIAN
|
2016-09-08 20:38:57 +02:00
|
|
|
default "LITTLE" if BR2_sh4 || BR2_sh4a
|
2014-02-04 15:25:34 +01:00
|
|
|
default "BIG" if BR2_sh2a || BR2_sh4eb || BR2_sh4aeb
|