mktplinkfw: add missing exceeding bytes info to logs
[openwrt/svn-archive/archive.git] / tools / firmware-utils / src / mktplinkfw.c
index 4922afb069579677805398803e40e801262a674e..085eb4c39d7ca6438029a8f0c1e6d541fa126931 100644 (file)
@@ -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;
                        }
                }