From 0411d3f65439af733bda8089e31ce53576f3ce4e Mon Sep 17 00:00:00 2001 From: David Bauer Date: Tue, 15 May 2018 19:02:48 +0200 Subject: [PATCH 1/1] build: add apend-uboot command This commit adds an append-uboot command to append U-Boot from the bin-directory. Signed-off-by: David Bauer (cherry picked from commit 399495a952bf687d9c59226bddf4e73d3b42b30c) --- include/image-commands.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/image-commands.mk b/include/image-commands.mk index a848655399..82ceacd80e 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -186,6 +186,10 @@ define Build/append-ubi rm $@.tmp endef +define Build/append-uboot + dd if=$(UBOOT_PATH) >> $@ +endef + define Build/pad-to dd if=$@ of=$@.new bs=$(1) conv=sync mv $@.new $@ -- 2.30.2