All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
@ 2012-12-05 16:48 Gary Coulbourne
  2012-12-05 17:05 ` Thomas Petazzoni
  2013-07-29 19:24 ` Thomas Petazzoni
  0 siblings, 2 replies; 9+ messages in thread
From: Gary Coulbourne @ 2012-12-05 16:48 UTC (permalink / raw)
  To: buildroot

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
--
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121205/9181a361/attachment.html>

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-07-29 19:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-05 16:48 [Buildroot] [PATCH] add support for Freescale .sb format to uboot Gary Coulbourne
2012-12-05 17:05 ` Thomas Petazzoni
2012-12-05 17:16   ` Attila Kinali
2012-12-05 17:46     ` Peter Korsgaard
2012-12-05 19:13       ` Thomas Petazzoni
2012-12-05 20:27       ` Attila Kinali
2012-12-05 21:20         ` Peter Korsgaard
2012-12-17 13:52           ` Attila Kinali
2013-07-29 19:24 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.