Home
last modified time | relevance | path

Searched hist:"6 ae6e16005252dbca0b4a06beea1be895df48e16" (Results 1 – 1 of 1) sorted by relevance

/openbmc/u-boot/tools/
H A Dmkimage.cdiff 6ae6e16005252dbca0b4a06beea1be895df48e16 Thu Dec 03 16:11:23 CST 2015 Philippe De Swert <philippedeswert@gmail.com> mkimage : Fix generating multi and script images

Seems 92a655c3 broke creating multi and script type images.
Since the file1:file2:file3 string does not get split up,
it fails on trying to open an non-existing file.

mkimage -A arm -O linux -T multi -C none -d zImage:splash.bmp:device.dtb uimage
tools/mkimage: Can't open zImage:splash.bmp:device.dtb: No such file or directory

Since the sizes of the different parts seem to get added in the actual
routine that handles multi and script type images, we can probably skip the
bit of the code that causes the failure for that type of images.

Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>