diff options
Diffstat (limited to 'boot')
-rw-r--r-- | boot/u-boot/Config.in | 4 | ||||
-rw-r--r-- | boot/u-boot/u-boot.mk | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/boot/u-boot/Config.in b/boot/u-boot/Config.in index 60aeb1a91..78c03ffb8 100644 --- a/boot/u-boot/Config.in +++ b/boot/u-boot/Config.in @@ -75,6 +75,10 @@ config BR2_TARGET_UBOOT_FORMAT_KWB depends on BR2_arm bool "u-boot.kwb (Marvell)" +config BR2_TARGET_UBOOT_FORMAT_LDR + depends on BR2_bfin + bool "u-boot.ldr" + endchoice config BR2_TARGET_UBOOT_TOOL_MKIMAGE diff --git a/boot/u-boot/u-boot.mk b/boot/u-boot/u-boot.mk index 2f890fa33..bd26f52f8 100644 --- a/boot/u-boot/u-boot.mk +++ b/boot/u-boot/u-boot.mk @@ -31,6 +31,8 @@ U_BOOT_CAT:=$(BZCAT) ifeq ($(BR2_TARGET_UBOOT_FORMAT_KWB),y) U_BOOT_BIN:=u-boot.kwb U_BOOT_MAKE_OPT:=$(U_BOOT_BIN) +else ifeq ($(BR2_TARGET_UBOOT_FORMAT_LDR),y) +U_BOOT_BIN:=u-boot.ldr else U_BOOT_BIN:=u-boot.bin endif |