build: add image makefile helper function for pading with an offset
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44012
This commit is contained in:
parent
5e8bc7088b
commit
f5cab4828c
1 changed files with 11 additions and 0 deletions
|
@ -307,6 +307,17 @@ define Build/pad-rootfs
|
|||
$(call prepare_generic_squashfs,$@)
|
||||
endef
|
||||
|
||||
define Build/pad-offset
|
||||
let \
|
||||
size="$$(stat -c%s $@)" \
|
||||
pad="$(word 1, $(1))" \
|
||||
offset="$(word 2, $(1))" \
|
||||
pad="(pad - ((size + offset) % pad)) % pad" \
|
||||
newsize='size + pad'; \
|
||||
dd if=$@ of=$@.new bs=$$newsize count=1 conv=sync
|
||||
mv $@.new $@
|
||||
endef
|
||||
|
||||
define Build/check-size
|
||||
@[ $$(($(subst k,* 1024,$(subst m, * 1024k,$(1))))) -gt "$$(stat -c%s $@)" ] || { \
|
||||
echo "WARNING: Image file $@ is too big"; \
|
||||
|
|
Loading…
Reference in a new issue