From 8d8bda071f3f1f80d1fd6a61b603e7c45ebd319b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 1 Nov 2014 17:11:01 +0100 Subject: [PATCH] U-Boot: generate a separate uImage for the boot tgz as well We need this when using the linux entry point. --- src/system/boot/platform/u-boot/Jamfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/system/boot/platform/u-boot/Jamfile b/src/system/boot/platform/u-boot/Jamfile index 48691a809f..15e5602c44 100644 --- a/src/system/boot/platform/u-boot/Jamfile +++ b/src/system/boot/platform/u-boot/Jamfile @@ -212,6 +212,10 @@ BuildUImage haiku_loader.ub : haiku_loader : local tgzArchive = haiku-floppyboot.tgz ; +BuildUImage $(tgzArchive).ub : $(tgzArchive) : + -A $(TARGET_ARCH) -O linux -T ramdisk -C none + -n '$(tgzArchive) $(TARGET_BOOT_BOARD)' ; + BuildUImage haiku_loader_linux.ub : haiku_loader : -A $(TARGET_ARCH) -O linux -T kernel -C none -a $(HAIKU_BOARD_LOADER_BASE) -e $(HAIKU_BOARD_LOADER_ENTRY_LINUX)