mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
Using mkimage with e.g.
tools/mkimage -A arm -T firmware -O u-boot -d u-boot.bin foo.img
gives a warning
"Unknown OMAP image type - 5"
while it seems that the image itself is created successfully.
This does come from the patch "mkimage: Add OMAP boot image support".
The method check_image_type in image_type_params is supposed to just
return success or failure. However, for omap it also calls fprintf:
static int omapimage_check_image_types(uint8_t type)
{
if (type == IH_TYPE_OMAPIMAGE)
return EXIT_SUCCESS;
else {
fprintf(stderr, "Unknown OMAP image type - %x", type);
return EXIT_FAILURE;
}
}
All the other image checkers and no others have this, so the fix is to
simply remove the fprintf.
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
CC: John Rigby <john.rigby@linaro.org>
CC: Aneesh V <aneesh@ti.com>
CC: Sandeep Paulraj <s-paulraj@ti.com>
|
||
|---|---|---|
| .. | ||
| bddb | ||
| easylogo | ||
| env | ||
| gdb | ||
| imls | ||
| logos | ||
| omap | ||
| scripts | ||
| updater | ||
| .gitignore | ||
| bin2header.c | ||
| bmp_logo.c | ||
| default_image.c | ||
| envcrc.c | ||
| fdt_host.h | ||
| fit_image.c | ||
| gen_eth_addr.c | ||
| getline.c | ||
| getline.h | ||
| img2brec.sh | ||
| img2srec.c | ||
| imximage.c | ||
| imximage.h | ||
| jtagconsole | ||
| kwbimage.c | ||
| kwbimage.h | ||
| Makefile | ||
| mingw_support.c | ||
| mingw_support.h | ||
| mkimage.c | ||
| mkimage.h | ||
| mpc86x_clk.c | ||
| ncb.c | ||
| netconsole | ||
| omapimage.c | ||
| omapimage.h | ||
| os_support.c | ||
| os_support.h | ||
| setlocalversion | ||
| ublimage.c | ||
| ublimage.h | ||
| ubsha1.c | ||
| xway-swap-bytes.c | ||