mirror of https://github.com/hak5/openwrt.git
ar71xx: image: show size limit in warning messages
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 39376lede-17.01
parent
447530995a
commit
9f4e2bf326
|
@ -142,9 +142,9 @@ define CatFiles
|
||||||
rm -f $(5); \
|
rm -f $(5); \
|
||||||
fi; \
|
fi; \
|
||||||
else if [ $(2) -gt 262144 -a `stat -c%s "$(1)"` -gt $(2) ]; then \
|
else if [ $(2) -gt 262144 -a `stat -c%s "$(1)"` -gt $(2) ]; then \
|
||||||
echo "Warning: $(1) is too big" >&2; \
|
echo "Warning: $(1) is too big (> $(2) bytes)" >&2; \
|
||||||
else if [ `stat -c%s $(3)` -gt $(4) ]; then \
|
else if [ `stat -c%s $(3)` -gt $(4) ]; then \
|
||||||
echo "Warning: $(3) is too big" >&2; \
|
echo "Warning: $(3) is too big (> $(4) bytes)" >&2; \
|
||||||
else \
|
else \
|
||||||
( dd if=$(1) bs=$(2) conv=sync; dd if=$(3) ) > $(5); \
|
( dd if=$(1) bs=$(2) conv=sync; dd if=$(3) ) > $(5); \
|
||||||
fi; fi; fi
|
fi; fi; fi
|
||||||
|
|
Loading…
Reference in New Issue