diff options
Diffstat (limited to 'arch/Config.in.sh')
-rw-r--r-- | arch/Config.in.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/Config.in.sh b/arch/Config.in.sh index 314c55ae9..cf70fd5ff 100644 --- a/arch/Config.in.sh +++ b/arch/Config.in.sh @@ -22,3 +22,20 @@ config BR2_sh4a config BR2_sh4aeb bool "sh4aeb (SH4A big endian)" endchoice + +config BR2_ARCH + default "sh2" if BR2_sh2 + default "sh2a" if BR2_sh2a + default "sh3" if BR2_sh3 + default "sh3eb" if BR2_sh3eb + default "sh4" if BR2_sh4 + default "sh4eb" if BR2_sh4eb + default "sh4a" if BR2_sh4a + default "sh4aeb" if BR2_sh4aeb + default "sh64" if BR2_sh64 + +config BR2_ENDIAN + default "LITTLE" if BR2_sh3 || BR2_sh4 || BR2_sh4a || \ + BR2_x86_64 || BR2_sh64 + default "BIG" if BR2_sh2 || BR2_sh2a || BR2_sh3eb || \ + BR2_sh4eb || BR2_sh4aeb |