summaryrefslogtreecommitdiff
path: root/tools/mkimage
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-07-16 09:43:31 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-07-16 09:43:31 +0000
commitccdd6e82159c9c08e12e4095cb946455209fa36b (patch)
tree95902fe9ace291cf67fe7c1ab0ed5f41df92185d /tools/mkimage
parent87587736e232ce68de6cba7ef310b4b78028ded8 (diff)
downloadmtk-20170518-ccdd6e82159c9c08e12e4095cb946455209fa36b.zip
mtk-20170518-ccdd6e82159c9c08e12e4095cb946455209fa36b.tar.gz
mtk-20170518-ccdd6e82159c9c08e12e4095cb946455209fa36b.tar.bz2
tools/mkimage: avoid a linux specific return code
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37368
Diffstat (limited to 'tools/mkimage')
-rw-r--r--tools/mkimage/patches/070-avoid_ENOMEDIUM.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/mkimage/patches/070-avoid_ENOMEDIUM.patch b/tools/mkimage/patches/070-avoid_ENOMEDIUM.patch
new file mode 100644
index 0000000..53b3aa6
--- /dev/null
+++ b/tools/mkimage/patches/070-avoid_ENOMEDIUM.patch
@@ -0,0 +1,11 @@
+--- a/common/image-fit.c
++++ b/common/image-fit.c
+@@ -1557,7 +1557,7 @@ int fit_image_load(bootm_headers_t *imag
+ if (fit_image_get_data(fit, noffset, &buf, &size)) {
+ printf("Could not find %s subimage data!\n", prop_name);
+ bootstage_error(bootstage_id + BOOTSTAGE_SUB_GET_DATA);
+- return -ENOMEDIUM;
++ return -EIO;
+ }
+ len = (ulong)size;
+