Commit 5364add4ef90c058bea8b3eceb2a559c0a983537

Authored by Scott Wood
1 parent 277f00f5b5

spl: rename u-boot-pad.bin to u-boot-with-spl.bin

Signed-off-by: Scott Wood <scottwood@freescale.com>

Showing 1 changed file with 4 additions and 4 deletions Side-by-side Diff

... ... @@ -474,14 +474,14 @@
474 474 $(obj)u-boot.dis: $(obj)u-boot
475 475 $(OBJDUMP) -d $< > $@
476 476  
477   -$(obj)u-boot-pad.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  477 +$(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
478 478 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
479   - cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $(obj)u-boot-pad.bin
  479 + cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
480 480 rm $(obj)spl/u-boot-spl-pad.bin
481 481  
482   -$(obj)u-boot.ubl: $(obj)u-boot-pad.bin
  482 +$(obj)u-boot.ubl: $(obj)u-boot-with-spl.bin
483 483 $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
484   - -e $(CONFIG_SYS_TEXT_BASE) -d $(obj)u-boot-pad.bin $(obj)u-boot.ubl
  484 + -e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl
485 485  
486 486 $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
487 487 $(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \