Makefile: Remove expansion of undefined variable

The U-Boot environment was previously stored in the boot loader stream
using ldr, but it has been replaced by the default environment built
into the U-Boot executable or an environment on external storage

Fixes: ea3310e8aa ("Blackfin: Remove")

Signed-off-by: Philip Molloy <philip.molloy@analog.com>
Reviewed-by: Greg Malysa <malysagreg@gmail.com>
This commit is contained in:
Philip Molloy 2025-07-28 13:04:03 +00:00 committed by Tom Rini
parent fcac9bfbbd
commit 007610da2c
2 changed files with 0 additions and 2 deletions

View File

@ -1574,7 +1574,6 @@ u-boot-nodtb.bin: u-boot FORCE
$(BOARD_SIZE_CHECK) $(BOARD_SIZE_CHECK)
u-boot.ldr: u-boot u-boot.ldr: u-boot
$(CREATE_LDR_ENV)
$(LDR) -T $(CONFIG_LDR_CPU) -c $@ $< $(LDR_FLAGS) $(LDR) -T $(CONFIG_LDR_CPU) -c $@ $< $(LDR_FLAGS)
$(BOARD_SIZE_CHECK) $(BOARD_SIZE_CHECK)

View File

@ -390,7 +390,6 @@ $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
endif endif
$(obj)/u-boot-spl.ldr: $(obj)/u-boot-spl $(obj)/u-boot-spl.ldr: $(obj)/u-boot-spl
$(CREATE_LDR_ENV)
$(LDR) -T $(CONFIG_LDR_CPU) -c $@ $< $(LDR_FLAGS) $(LDR) -T $(CONFIG_LDR_CPU) -c $@ $< $(LDR_FLAGS)
$(BOARD_SIZE_CHECK) $(BOARD_SIZE_CHECK)