]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
Makefile: Remove expansion of undefined variable
authorPhilip Molloy <philip.molloy@analog.com>
Mon, 28 Jul 2025 13:04:03 +0000 (13:04 +0000)
committerTom Rini <trini@konsulko.com>
Tue, 5 Aug 2025 00:23:16 +0000 (18:23 -0600)
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: ea3310e8aafa ("Blackfin: Remove")
Signed-off-by: Philip Molloy <philip.molloy@analog.com>
Reviewed-by: Greg Malysa <malysagreg@gmail.com>
Makefile
scripts/Makefile.xpl

index b03f87a93fb9be96960a85c0075045d9450a5b60..6ec2ce0592881413dc4e45a827cdb90ee4cd5696 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1574,7 +1574,6 @@ u-boot-nodtb.bin: u-boot FORCE
        $(BOARD_SIZE_CHECK)
 
 u-boot.ldr:    u-boot
-               $(CREATE_LDR_ENV)
                $(LDR) -T $(CONFIG_LDR_CPU) -c $@ $< $(LDR_FLAGS)
                $(BOARD_SIZE_CHECK)
 
index 03a2f151d916964588e852031233b6981d8350a0..3e940bf562d55df4e0eaaed50b5128e7641c254e 100644 (file)
@@ -390,7 +390,6 @@ $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
 endif
 
 $(obj)/u-boot-spl.ldr: $(obj)/u-boot-spl
-       $(CREATE_LDR_ENV)
        $(LDR) -T $(CONFIG_LDR_CPU) -c $@ $< $(LDR_FLAGS)
        $(BOARD_SIZE_CHECK)