binman: Add a build rule for binman
Add a standard command definition for binman so that it can be used in makefiles. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
da22909073
commit
17a944b671
6
Makefile
6
Makefile
|
@ -903,6 +903,12 @@ u-boot.ldr: u-boot
|
||||||
$(LDR) -T $(CONFIG_CPU) -c $@ $< $(LDR_FLAGS)
|
$(LDR) -T $(CONFIG_CPU) -c $@ $< $(LDR_FLAGS)
|
||||||
$(BOARD_SIZE_CHECK)
|
$(BOARD_SIZE_CHECK)
|
||||||
|
|
||||||
|
# binman
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
quiet_cmd_binman = BINMAN $@
|
||||||
|
cmd_binman = $(srctree)/tools/binman/binman -d u-boot.dtb -O . \
|
||||||
|
-I . -I $(srctree)/board/$(BOARDDIR) $<
|
||||||
|
|
||||||
OBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex
|
OBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex
|
||||||
|
|
||||||
OBJCOPYFLAGS_u-boot.ldr.srec := -I binary -O srec
|
OBJCOPYFLAGS_u-boot.ldr.srec := -I binary -O srec
|
||||||
|
|
Loading…
Reference in New Issue