From 6fe138ffaa7b758ed17344dc3f3184725a0ecdde Mon Sep 17 00:00:00 2001 From: jogo Date: Fri, 4 Sep 2015 14:44:10 +0000 Subject: [PATCH] image: add a build step for building and appending an ubinized rootfs Signed-off-by: Jonas Gorski git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46783 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- include/image.mk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/image.mk b/include/image.mk index 73fc805bb5..fb89ed1222 100644 --- a/include/image.mk +++ b/include/image.mk @@ -345,6 +345,16 @@ define Build/append-rootfs dd if=$(word 2,$^) $(if $(1),bs=$(1) conv=sync) >> $@ endef +define Build/append-ubi + sh $(TOPDIR)/scripts/ubinize-image.sh \ + $(if $(KERNEL_IN_UBI),--kernel $(word 1,$^)) \ + $(word 2,$^) \ + $@.tmp \ + -p $(BLOCKSIZE) -m $(PAGESIZE) -E 5 + cat $@.tmp >> $@ + rm $@.tmp +endef + define Build/pad-to dd if=$@ of=$@.new bs=$(1) conv=sync mv $@.new $@ -- 2.11.0