summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-07-31 11:18:43 -0600
committerTom Rini <[email protected]>2024-07-31 11:18:43 -0600
commitc9860d7ac530971e81e36c0b993fbfb02a42afb3 (patch)
treef49eee541d6d5be362ee56c6850abe6c7061e583 /Makefile
parent4793b683b3ae4aaad9785c36e1d9cc71613a4253 (diff)
parent3911ff576eda8f28d221b91ec58a0bf2e0c7f67f (diff)
Merge patch series "Endian Kconfig improvements"
Jiaxun Yang <[email protected]> says: This is a subset of my previous arm64_be work. I wish this could be merged first so it would be easier to work against xtensa and arm64 be support.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ea562c2c9c1..f0e6f07178f 100644
--- a/Makefile
+++ b/Makefile
@@ -1048,7 +1048,7 @@ endif
CHECKFLAGS += --arch=$(ARCH)
# insure the checker run with the right endianness
-CHECKFLAGS += $(if $(CONFIG_CPU_BIG_ENDIAN),-mbig-endian,-mlittle-endian)
+CHECKFLAGS += $(if $(CONFIG_SYS_BIG_ENDIAN),-mbig-endian,-mlittle-endian)
# the checker needs the correct machine size
CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)