diff options
author | Greentime Hu <greentime@andestech.com> | 2018-04-19 10:26:43 +0200 |
---|---|---|
committer | Greentime Hu <greentime@andestech.com> | 2018-05-23 07:26:21 +0200 |
commit | b3b112bb06eb26ce44af63d599aaf5fe54de0699 (patch) | |
tree | ad04b3afd036c4b91fd72e4403e71cf66590978e /arch/nds32/Kconfig.cpu | |
parent | nds32: Fix build failed because arch_trace_hardirqs_off is changed to trace_h... (diff) | |
download | linux-b3b112bb06eb26ce44af63d599aaf5fe54de0699.tar.xz linux-b3b112bb06eb26ce44af63d599aaf5fe54de0699.zip |
nds32: Fix the allmodconfig build. To make sure CONFIG_CPU_LITTLE_ENDIAN is default y
This way we can build kernel with CONFIG_CPU_LITTLE_ENDIAN=y. Build allmodconfig
and allnoconfig are available too. It also fixes the endian mismatch issue
because AFLAGS and LDFLAGS is not passed correctly.
Signed-off-by: Vincent Ren-Wei Chen <vincentc@andestech.com>
Signed-off-by: Greentime Hu <greentime@andestech.com>
Diffstat (limited to 'arch/nds32/Kconfig.cpu')
-rw-r--r-- | arch/nds32/Kconfig.cpu | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/nds32/Kconfig.cpu b/arch/nds32/Kconfig.cpu index ba44cc539da9..b8c8984d1456 100644 --- a/arch/nds32/Kconfig.cpu +++ b/arch/nds32/Kconfig.cpu @@ -1,10 +1,11 @@ comment "Processor Features" config CPU_BIG_ENDIAN - bool "Big endian" + def_bool !CPU_LITTLE_ENDIAN config CPU_LITTLE_ENDIAN - def_bool !CPU_BIG_ENDIAN + bool "Little endian" + default y config HWZOL bool "hardware zero overhead loop support" |