summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-12-11 15:08:44 +0000
committerJohn Crispin <john@openwrt.org>2015-12-11 15:08:44 +0000
commit0231d4135284dec47ec6597cf938698c6117ef1a (patch)
tree7b42fd2af69391ea242da05955b3918b311997df /tools
parent786717a7ce010ddce7acf80ac7b06b5ee5ea2c59 (diff)
downloadmaster-31e0f0ae-0231d4135284dec47ec6597cf938698c6117ef1a.tar.gz
master-31e0f0ae-0231d4135284dec47ec6597cf938698c6117ef1a.tar.bz2
master-31e0f0ae-0231d4135284dec47ec6597cf938698c6117ef1a.zip
mktplinkfw: add missing exceeding bytes info to logs
Add the info on exceeding bytes also to the remaining log messages. Signed-off-by: Felix Kaechele <felix@kaechele.ca> SVN-Revision: 47864
Diffstat (limited to 'tools')
-rw-r--r--tools/firmware-utils/src/mktplinkfw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c
index 4922afb069..085eb4c39d 100644
--- a/tools/firmware-utils/src/mktplinkfw.c
+++ b/tools/firmware-utils/src/mktplinkfw.c
@@ -709,13 +709,13 @@ static int check_options(void)
} else {
exceed_bytes = kernel_info.file_size - (rootfs_ofs - sizeof(struct fw_header));
if (exceed_bytes > 0) {
- ERR("kernel image is too big");
+ ERR("kernel image is too big by %i bytes", exceed_bytes);
return -1;
}
exceed_bytes = rootfs_info.file_size - (fw_max_len - rootfs_ofs);
if (exceed_bytes > 0) {
- ERR("rootfs image is too big");
+ ERR("rootfs image is too big by %i bytes", exceed_bytes);
return -1;
}
}