diff options
author | Sébastien Szymanski <sebastien.szymanski@armadeus.com> | 2024-02-23 12:42:06 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-02-23 09:42:39 -0500 |
commit | 957033c1ddbdf88e46b6d3111af71e25482a4ca0 (patch) | |
tree | 06ec9804a898b604ceb3fef4ec27a613c47bcb65 | |
parent | 5e4a0c7f4a2c9d4670b75a6a2056243b1a56512b (diff) | |
download | u-boot-TEST/use-undef.zip u-boot-TEST/use-undef.tar.gz u-boot-TEST/use-undef.tar.bz2 |
Makefile: pass -undef option to cmd_gen_envpTEST/use-undef
Without the '-undef' option, the 'linux' string in .env files is
replaced with the string '1 '.
For example, in the board/armadeus/opos6uldev/opos6uldev.env file,
kernelimg=opos6ul-linux.bin
becomes
kernelimg=opos6ul-1 .bin
in the include/generated/env.in file.
That's because 'linux' is a System-specific Predefined Macros. [1]
Pass the '-undef' option to fix this issue.
[1] https://gcc.gnu.org/onlinedocs/gcc-13.2.0/cpp/System-specific-Predefined-Macros.html
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1804,7 +1804,8 @@ ENV_FILE := $(if $(ENV_SOURCE_FILE),$(ENV_FILE_CFG),$(wildcard $(ENV_FILE_BOARD) quiet_cmd_gen_envp = ENVP $@ cmd_gen_envp = \ if [ -s "$(ENV_FILE)" ]; then \ - $(CPP) -P $(CFLAGS) -x assembler-with-cpp -D__ASSEMBLY__ \ + $(CPP) -P $(CFLAGS) -x assembler-with-cpp -undef \ + -D__ASSEMBLY__ \ -D__UBOOT_CONFIG__ \ -I . -I include -I $(srctree)/include \ -include linux/kconfig.h -include include/config.h \ |