summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2014-01-23 12:27:28 +0000
committerGabor Juhos <juhosg@openwrt.org>2014-01-23 12:27:28 +0000
commit9f4e2bf326be5bb2869d87f096c51cbffc4170f8 (patch)
treebc2da8de9d726ecbc6d032a9e16472b7fdc457e6 /target
parent447530995a3a30685670ee56e7b18f2d3c6c383b (diff)
downloadmtk-20170518-9f4e2bf326be5bb2869d87f096c51cbffc4170f8.zip
mtk-20170518-9f4e2bf326be5bb2869d87f096c51cbffc4170f8.tar.gz
mtk-20170518-9f4e2bf326be5bb2869d87f096c51cbffc4170f8.tar.bz2
ar71xx: image: show size limit in warning messages
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 39376
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/image/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile
index e9ffd77..64cd854 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -142,9 +142,9 @@ define CatFiles
rm -f $(5); \
fi; \
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 \
- echo "Warning: $(3) is too big" >&2; \
+ echo "Warning: $(3) is too big (> $(4) bytes)" >&2; \
else \
( dd if=$(1) bs=$(2) conv=sync; dd if=$(3) ) > $(5); \
fi; fi; fi