mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-13 10:24:51 +00:00
build: fix uImage fake header command
Use a syntax compatible with mkimage from u-boot 2018.03 to fix the build errors spotted by the build bot. The images are binary identical to the ones generated with mkimage from u-boot 2014.10. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
parent
fdf2e1fe1e
commit
38bd4e4eb5
@ -80,10 +80,11 @@ endef
|
|||||||
# append a fake/empty rootfs uImage header, to fool the bootloaders
|
# append a fake/empty rootfs uImage header, to fool the bootloaders
|
||||||
# rootfs integrity check
|
# rootfs integrity check
|
||||||
define Build/append-uImage-fakeroot-hdr
|
define Build/append-uImage-fakeroot-hdr
|
||||||
rm -f $@.fakeroot
|
touch $@.fakeroot
|
||||||
$(STAGING_DIR_HOST)/bin/mkimage \
|
$(STAGING_DIR_HOST)/bin/mkimage \
|
||||||
-A $(LINUX_KARCH) -O linux -T filesystem -C none \
|
-A $(LINUX_KARCH) -O linux -T filesystem -C none \
|
||||||
-n '$(call toupper,$(LINUX_KARCH)) $(VERSION_DIST) fakeroot' \
|
-n '$(call toupper,$(LINUX_KARCH)) $(VERSION_DIST) fakeroot' \
|
||||||
|
-d $@.fakeroot \
|
||||||
-s \
|
-s \
|
||||||
$@.fakeroot
|
$@.fakeroot
|
||||||
cat $@.fakeroot >> $@
|
cat $@.fakeroot >> $@
|
||||||
|
Loading…
Reference in New Issue
Block a user