mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 07:04:28 +00:00
mkimage -l is broken for images after gpimage
Because a gpimage cannot be detected, a false GP header is printed instead of checking for further image types. Move gpimage as last to be linked, letting check all other image types and printing a GP header just in case no image is detected. Signed-off-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
5fb0001a67
commit
969cd1fa6d
1 changed files with 2 additions and 2 deletions
|
@ -76,8 +76,6 @@ dumpimage-mkimage-objs := aisimage.o \
|
|||
lib/fdtdec.o \
|
||||
fit_common.o \
|
||||
fit_image.o \
|
||||
gpimage.o \
|
||||
gpimage-common.o \
|
||||
common/image-fit.o \
|
||||
image-host.o \
|
||||
common/image.o \
|
||||
|
@ -100,6 +98,8 @@ dumpimage-mkimage-objs := aisimage.o \
|
|||
zynqimage.o \
|
||||
zynqmpimage.o \
|
||||
$(LIBFDT_OBJS) \
|
||||
gpimage.o \
|
||||
gpimage-common.o \
|
||||
$(RSA_OBJS-y)
|
||||
|
||||
dumpimage-objs := $(dumpimage-mkimage-objs) dumpimage.o
|
||||
|
|
Loading…
Reference in a new issue