diff options
Diffstat (limited to 'target/Config.in')
-rw-r--r-- | target/Config.in | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/target/Config.in b/target/Config.in index cf762a908..cf66fae6f 100644 --- a/target/Config.in +++ b/target/Config.in @@ -3,7 +3,7 @@ source "tmp/.config-target.in" # Kernel/Hardware features config HAS_SPE_FPU - depends powerpc + depends on powerpc select HAS_FPU bool @@ -66,6 +66,13 @@ config PROFILE_KCONFIG config NOMMU bool +config HAS_MIPS16 + depends on (mips || mipsel || mips64 || mips64el) + bool + +config ARCH_64BIT + bool + # Architecture selection config arm @@ -75,6 +82,18 @@ config armeb select BIG_ENDIAN bool +config arm_v4 + bool + +config arm_v5 + bool + +config arm_v6 + bool + +config arm_v7 + bool + config avr32 select BIG_ENDIAN bool @@ -104,9 +123,11 @@ config mipsel config mips64 select BIG_ENDIAN + select ARCH_64BIT bool config mips64el + select ARCH_64BIT bool config powerpc @@ -115,6 +136,7 @@ config powerpc config powerpc64 select BIG_ENDIAN + select ARCH_64BIT bool config sh3 @@ -135,11 +157,8 @@ config sparc select BIG_ENDIAN bool -config ubicom32 - select BIG_ENDIAN - bool - config x86_64 + select ARCH_64BIT bool config ARCH @@ -161,7 +180,6 @@ config ARCH default "sh4" if sh4 default "sh4eb" if sh4eb default "sparc" if sparc - default "ubicom32" if ubicom32 default "x86_64" if x86_64 default "mips" if lexra |