diff options
author | Tom Rini <trini@konsulko.com> | 2024-07-31 11:18:43 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-31 11:18:43 -0600 |
commit | c9860d7ac530971e81e36c0b993fbfb02a42afb3 (patch) | |
tree | f49eee541d6d5be362ee56c6850abe6c7061e583 /scripts | |
parent | 4793b683b3ae4aaad9785c36e1d9cc71613a4253 (diff) | |
parent | 3911ff576eda8f28d221b91ec58a0bf2e0c7f67f (diff) |
Merge patch series "Endian Kconfig improvements"
Jiaxun Yang <jiaxun.yang@flygoat.com> 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 'scripts')
-rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 97dd4a64f6e..99cc29595b4 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -224,7 +224,7 @@ recordmcount_source := $(srctree)/scripts/recordmcount.c \ $(srctree)/scripts/recordmcount.h else sub_cmd_record_mcount = set -e ; perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ - "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \ + "$(if $(CONFIG_SYS_BIG_ENDIAN),big,little)" \ "$(if $(CONFIG_64BIT),64,32)" \ "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \ "$(LD) $(KBUILD_LDFLAGS)" "$(NM)" "$(RM)" "$(MV)" \ |