Buildroot Archive on 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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  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
  2013-07-29 19:24 ` Thomas Petazzoni
  1 sibling, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2012-12-05 17:05 UTC (permalink / raw)
  To: buildroot

Dear Gary Coulbourne,

On Wed, 5 Dec 2012 11:48:27 -0500, Gary Coulbourne wrote:
> This patch offers the option to build u-boot.sb

We had a patch sent in March this year adding support for u-boot.sb:

[Buildroot] [PATCH 2/2] u-boot: add support for u-boot.sb file format

It was more complete than this one, because it included the dependency
on host-elftosb, which is needed to bring the elftosb tool built by
Buildroot before U-Boot uses it to generate the .sb image.

Best regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  2012-12-05 17:05 ` Thomas Petazzoni
@ 2012-12-05 17:16   ` Attila Kinali
  2012-12-05 17:46     ` Peter Korsgaard
  0 siblings, 1 reply; 9+ messages in thread
From: Attila Kinali @ 2012-12-05 17:16 UTC (permalink / raw)
  To: buildroot

Moin,

On Wed, 5 Dec 2012 18:05:33 +0100
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote:

> [Buildroot] [PATCH 2/2] u-boot: add support for u-boot.sb file format
> 
> It was more complete than this one, because it included the dependency
> on host-elftosb, which is needed to bring the elftosb tool built by
> Buildroot before U-Boot uses it to generate the .sb image.

Any reason why it has not gotten into the git repo?

			Attila Kinali

-- 
There is no secret ingredient
         -- Po, Kung Fu Panda

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  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
  0 siblings, 2 replies; 9+ messages in thread
From: Peter Korsgaard @ 2012-12-05 17:46 UTC (permalink / raw)
  To: buildroot

>>>>> "Attila" == Attila Kinali <attila@kinali.ch> writes:

 >> [Buildroot] [PATCH 2/2] u-boot: add support for u-boot.sb file format
 >> 
 >> It was more complete than this one, because it included the dependency
 >> on host-elftosb, which is needed to bring the elftosb tool built by
 >> Buildroot before U-Boot uses it to generate the .sb image.

 Attila> Any reason why it has not gotten into the git repo?

Not really. I don't have any imx hw here. Are you able to test it?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  2012-12-05 17:46     ` Peter Korsgaard
@ 2012-12-05 19:13       ` Thomas Petazzoni
  2012-12-05 20:27       ` Attila Kinali
  1 sibling, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2012-12-05 19:13 UTC (permalink / raw)
  To: buildroot

Dear Peter Korsgaard,

On Wed, 05 Dec 2012 09:46:50 -0800, Peter Korsgaard wrote:
> >>>>> "Attila" == Attila Kinali <attila@kinali.ch> writes:
> 
>  >> [Buildroot] [PATCH 2/2] u-boot: add support for u-boot.sb file
>  >> format
>  >> 
>  >> It was more complete than this one, because it included the
>  >> dependency on host-elftosb, which is needed to bring the elftosb
>  >> tool built by Buildroot before U-Boot uses it to generate the .sb
>  >> image.
> 
>  Attila> Any reason why it has not gotten into the git repo?
> 
> Not really. I don't have any imx hw here. Are you able to test it?

It was submitted in March by a guy from Armadeus, and they do use i.MX
hardware a lot, so I guess that it works.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  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
  1 sibling, 1 reply; 9+ messages in thread
From: Attila Kinali @ 2012-12-05 20:27 UTC (permalink / raw)
  To: buildroot

On Wed, 05 Dec 2012 09:46:50 -0800
Peter Korsgaard <jacmet@uclibc.org> wrote:

> >>>>> "Attila" == Attila Kinali <attila@kinali.ch> writes:
> 
>  >> [Buildroot] [PATCH 2/2] u-boot: add support for u-boot.sb file format
>  >> 
>  >> It was more complete than this one, because it included the dependency
>  >> on host-elftosb, which is needed to bring the elftosb tool built by
>  >> Buildroot before U-Boot uses it to generate the .sb image.
> 
>  Attila> Any reason why it has not gotten into the git repo?
> 
> Not really. I don't have any imx hw here. Are you able to test it?

I have an i.mx23 EVK at work. So i guess i could test it.

			Attila Kinali

-- 
There is no secret ingredient
         -- Po, Kung Fu Panda

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  2012-12-05 20:27       ` Attila Kinali
@ 2012-12-05 21:20         ` Peter Korsgaard
  2012-12-17 13:52           ` Attila Kinali
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Korsgaard @ 2012-12-05 21:20 UTC (permalink / raw)
  To: buildroot

>>>>> "Attila" == Attila Kinali <attila@kinali.ch> writes:

 >> Not really. I don't have any imx hw here. Are you able to test it?

 Attila> I have an i.mx23 EVK at work. So i guess i could test it.

Great, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  2012-12-05 21:20         ` Peter Korsgaard
@ 2012-12-17 13:52           ` Attila Kinali
  0 siblings, 0 replies; 9+ messages in thread
From: Attila Kinali @ 2012-12-17 13:52 UTC (permalink / raw)
  To: buildroot

On Wed, 05 Dec 2012 13:20:11 -0800
Peter Korsgaard <jacmet@uclibc.org> wrote:

> >>>>> "Attila" == Attila Kinali <attila@kinali.ch> writes:
> 
>  >> Not really. I don't have any imx hw here. Are you able to test it?
> 
>  Attila> I have an i.mx23 EVK at work. So i guess i could test it.
> 
> Great, thanks.

Sorry, i didnt have time to test it yet.
And unfortunately it doesn't look like i will have time for it
until the end of the week. How it is between christmas and new year,
i cannot tell. But i try to fit it in somehow.

Thanks for your patience and sorry for the delay

			Attila Kinali


-- 
The trouble with you, Shev, is you don't say anything until you've saved
up a whole truckload of damned heavy brick arguments and then you dump
them all out and never look at the bleeding body mangled beneath the heap
		-- Tirin, The Dispossessed, U. Le Guin

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

* [Buildroot] [PATCH] add support for Freescale .sb format to uboot
  2012-12-05 16:48 [Buildroot] [PATCH] add support for Freescale .sb format to uboot Gary Coulbourne
  2012-12-05 17:05 ` Thomas Petazzoni
@ 2013-07-29 19:24 ` Thomas Petazzoni
  1 sibling, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2013-07-29 19:24 UTC (permalink / raw)
  To: buildroot

Dear Gary Coulbourne,

On Wed, 5 Dec 2012 11:48:27 -0500, Gary Coulbourne wrote:
> 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(+)

Applied, thanks. I had to add the host-elftosb dependency to make it
work properly.

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox