From patchwork Wed Dec 5 16:48:27 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: add support for Freescale .sb format to uboot Date: Wed, 05 Dec 2012 06:48:27 -0000 From: Gary Coulbourne X-Patchwork-Id: 203903 Message-Id: To: buildroot@busybox.net This patch offers the option to build u-boot.sb --- boot/uboot/Config.in | 4 ++++ boot/uboot/uboot.mk | 3 +++ 2 files changed, 7 insertions(+) -- diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index d8458d9..9b7a3b0 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -94,6 +94,10 @@ config BR2_TARGET_UBOOT_FORMAT_AIS It is required to load code/data on OMAP-L1 processors. u-boot.ais contains U-Boot with the SPL support. +config BR2_TARGET_UBOOT_FORMAT_SB + depends on BR2_arm + bool "u-boot.sb" + config BR2_TARGET_UBOOT_FORMAT_BIN bool "u-boot.bin" diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 619f2e1..4a98583 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -37,6 +37,9 @@ else ifeq ($(BR2_TARGET_UBOOT_FORMAT_NAND_BIN),y) UBOOT_BIN = u-boot-nand.bin else ifeq ($(BR2_TARGET_UBOOT_FORMAT_IMG),y) UBOOT_BIN = u-boot.img +else ifeq ($(BR2_TARGET_UBOOT_FORMAT_SB),y) +UBOOT_BIN = u-boot.sb +UBOOT_MAKE_TARGET = $(UBOOT_BIN) else UBOOT_BIN = u-boot.bin UBOOT_BIN_IFT = $(UBOOT_BIN).ift