projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4475309
)
ar71xx: image: show size limit in warning messages
author
Gabor Juhos
<
[email protected]
>
Thu, 23 Jan 2014 12:27:28 +0000
(12:27 +0000)
committer
Gabor Juhos
<
[email protected]
>
Thu, 23 Jan 2014 12:27:28 +0000
(12:27 +0000)
Signed-off-by: Gabor Juhos <
[email protected]
>
SVN-Revision: 39376
target/linux/ar71xx/image/Makefile
patch
|
blob
|
history
diff --git
a/target/linux/ar71xx/image/Makefile
b/target/linux/ar71xx/image/Makefile
index e9ffd77d9c5c18b3151e9e424639d741736afabc..64cd854a30f3a0269bb1811644ef9a9726258ef7 100644
(file)
--- 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