* Bulding multiple U-Boot configs for one machine
@ 2011-01-17 22:04 Ulf Samuelsson
2011-01-17 22:16 ` Tom Rini
2011-01-18 7:45 ` Frans Meulenbroeks
0 siblings, 2 replies; 4+ messages in thread
From: Ulf Samuelsson @ 2011-01-17 22:04 UTC (permalink / raw)
To: openembedded-devel
Managed to get some time over and checked in a recipe
for u-boot-2010.12 which builds all u-boot configs
specified in the UBOOT_MACHINES (note "S" at the end)
The frecipe is available in a private branch:
"ulf/linux-2.6.30-2011-01-16" (or similar).
There is a SAM9M10 machine checked in as well as a test case.
grep for UBOOT_MACHINES in the conf/machine directory to find out which.
Note that
UBOOT_MACHINE = "at91sam9m10g45ek_config"
but
UBOOT_MACHINES = "at91sam9m10g45ek_dataflash at91sam9m10g45ek_sd"
I.E: No "_config" in the list.
The goal of the new branch is to test booting from an SD-Card
without any other flash in the system.
Have tested this outside openembedded so far, but
the current branch is still to be tested on a board.
Best Regards
Ulf Samuelsson
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Bulding multiple U-Boot configs for one machine
2011-01-17 22:04 Bulding multiple U-Boot configs for one machine Ulf Samuelsson
@ 2011-01-17 22:16 ` Tom Rini
2011-01-18 17:40 ` Maupin, Chase
2011-01-18 7:45 ` Frans Meulenbroeks
1 sibling, 1 reply; 4+ messages in thread
From: Tom Rini @ 2011-01-17 22:16 UTC (permalink / raw)
To: openembedded-devel
On 01/17/2011 03:04 PM, Ulf Samuelsson wrote:
> Managed to get some time over and checked in a recipe
> for u-boot-2010.12 which builds all u-boot configs
> specified in the UBOOT_MACHINES (note "S" at the end)
>
> The frecipe is available in a private branch:
> "ulf/linux-2.6.30-2011-01-16" (or similar).
>
> There is a SAM9M10 machine checked in as well as a test case.
> grep for UBOOT_MACHINES in the conf/machine directory to find out which.
>
> Note that
> UBOOT_MACHINE = "at91sam9m10g45ek_config"
>
> but
>
> UBOOT_MACHINES = "at91sam9m10g45ek_dataflash at91sam9m10g45ek_sd"
>
> I.E: No "_config" in the list.
>
> The goal of the new branch is to test booting from an SD-Card
> without any other flash in the system.
> Have tested this outside openembedded so far, but
> the current branch is still to be tested on a board.
I can see a number of other use cases for this type of functionality so
+1 on the concept from me.
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Bulding multiple U-Boot configs for one machine
2011-01-17 22:04 Bulding multiple U-Boot configs for one machine Ulf Samuelsson
2011-01-17 22:16 ` Tom Rini
@ 2011-01-18 7:45 ` Frans Meulenbroeks
1 sibling, 0 replies; 4+ messages in thread
From: Frans Meulenbroeks @ 2011-01-18 7:45 UTC (permalink / raw)
To: openembedded-devel
2011/1/17 Ulf Samuelsson <ulf.samuelsson@atmel.com>:
> Managed to get some time over and checked in a recipe
> for u-boot-2010.12 which builds all u-boot configs
> specified in the UBOOT_MACHINES (note "S" at the end)
>
> The frecipe is available in a private branch:
> "ulf/linux-2.6.30-2011-01-16" (or similar).
>
> There is a SAM9M10 machine checked in as well as a test case.
> grep for UBOOT_MACHINES in the conf/machine directory to find out which.
>
> Note that
> UBOOT_MACHINE = "at91sam9m10g45ek_config"
>
> but
>
> UBOOT_MACHINES = "at91sam9m10g45ek_dataflash at91sam9m10g45ek_sd"
>
> I.E: No "_config" in the list.
>
> The goal of the new branch is to test booting from an SD-Card
> without any other flash in the system.
> Have tested this outside openembedded so far, but
> the current branch is still to be tested on a board.
Cool.
Calamari currently does this (in u-boot_git.bb) by having a dedicated
do_compile etc that simply builds all targets, but this seems much
more elegant.
(calamari has a different u-boot for sd and for nand.)
Frans
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Bulding multiple U-Boot configs for one machine
2011-01-17 22:16 ` Tom Rini
@ 2011-01-18 17:40 ` Maupin, Chase
0 siblings, 0 replies; 4+ messages in thread
From: Maupin, Chase @ 2011-01-18 17:40 UTC (permalink / raw)
To: openembedded-devel@lists.openembedded.org
> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
> Tom Rini
> Sent: Monday, January 17, 2011 4:16 PM
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] Bulding multiple U-Boot configs for one machine
>
> On 01/17/2011 03:04 PM, Ulf Samuelsson wrote:
> > Managed to get some time over and checked in a recipe
> > for u-boot-2010.12 which builds all u-boot configs
> > specified in the UBOOT_MACHINES (note "S" at the end)
> >
> > The frecipe is available in a private branch:
> > "ulf/linux-2.6.30-2011-01-16" (or similar).
> >
> > There is a SAM9M10 machine checked in as well as a test case.
> > grep for UBOOT_MACHINES in the conf/machine directory to find out which.
> >
> > Note that
> > UBOOT_MACHINE = "at91sam9m10g45ek_config"
> >
> > but
> >
> > UBOOT_MACHINES = "at91sam9m10g45ek_dataflash at91sam9m10g45ek_sd"
> >
> > I.E: No "_config" in the list.
> >
> > The goal of the new branch is to test booting from an SD-Card
> > without any other flash in the system.
> > Have tested this outside openembedded so far, but
> > the current branch is still to be tested on a board.
>
> I can see a number of other use cases for this type of functionality so
> +1 on the concept from me.
Agreed. Would love to see a patch for this because the concept is good.
>
> --
> Tom Rini
> Mentor Graphics Corporation
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-01-18 17:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-17 22:04 Bulding multiple U-Boot configs for one machine Ulf Samuelsson
2011-01-17 22:16 ` Tom Rini
2011-01-18 17:40 ` Maupin, Chase
2011-01-18 7:45 ` Frans Meulenbroeks
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.