Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-16 Thread Eric Nelson
On 11/16/2013 07:03 AM, Fabio Estevam wrote: Hi Eric, On Thu, Nov 14, 2013 at 7:38 PM, Eric Nelson wrote: I'm just hoping to get a trivial amount of machinery so a boot script can figure out which of a set of DTBs to load: imx6q-nitrogen6x.dtb, imx6dl-nitrogen6x.dtb, or

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-16 Thread Eric Nelson
Thanks Tom, On 11/15/2013 12:15 PM, Tom Rini wrote: On Fri, Nov 15, 2013 at 12:30:12AM +0100, Marek Vasut wrote: Hi Eric, Thanks Marek, On 11/14/2013 02:22 PM, Marek Vasut wrote: Dear Eric Nelson, +Albert, Tom These can be used in bootcmd to produce DTB file names. set_board_env() allow

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-16 Thread Fabio Estevam
Hi Eric, On Thu, Nov 14, 2013 at 7:38 PM, Eric Nelson wrote: > I'm just hoping to get a trivial amount of machinery so a boot > script can figure out which of a set of DTBs to load: > > imx6q-nitrogen6x.dtb, > imx6dl-nitrogen6x.dtb, or > imx6s-nitrogen6x.dtb imx6dl-nitro

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-15 Thread Tom Rini
On Fri, Nov 15, 2013 at 12:30:12AM +0100, Marek Vasut wrote: > Hi Eric, > > > Thanks Marek, > > > > On 11/14/2013 02:22 PM, Marek Vasut wrote: > > > Dear Eric Nelson, > > > > > > +Albert, Tom > > > > > >> These can be used in bootcmd to produce DTB file names. > > >> > > >> set_board_env() all

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-14 Thread Marek Vasut
Dear Eric Nelson, > On 11/14/2013 04:30 PM, Marek Vasut wrote: > > Hi Eric, > > > >> Thanks Marek, > >> > >> On 11/14/2013 02:22 PM, Marek Vasut wrote: > >>> Dear Eric Nelson, > > > > > > > >> I'm just hoping to get a trivial amount of machinery so a boot > >> > >> script can figure out w

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-14 Thread Eric Nelson
On 11/14/2013 04:30 PM, Marek Vasut wrote: Hi Eric, Thanks Marek, On 11/14/2013 02:22 PM, Marek Vasut wrote: Dear Eric Nelson, > I'm just hoping to get a trivial amount of machinery so a boot script can figure out which of a set of DTBs to load: imx6q-nitrogen6x.dtb, im

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-14 Thread Marek Vasut
Hi Eric, > Thanks Marek, > > On 11/14/2013 02:22 PM, Marek Vasut wrote: > > Dear Eric Nelson, > > > > +Albert, Tom > > > >> These can be used in bootcmd to produce DTB file names. > >> > >> set_board_env() allows over-ride for use when a developing custom > >> DTB files. > >> > >> Signed-off-

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-14 Thread Eric Nelson
Thanks Marek, On 11/14/2013 02:22 PM, Marek Vasut wrote: Dear Eric Nelson, +Albert, Tom These can be used in bootcmd to produce DTB file names. set_board_env() allows over-ride for use when a developing custom DTB files. Signed-off-by: Eric Nelson --- V2 adds void to the function declarati

Re: [U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-14 Thread Marek Vasut
Dear Eric Nelson, +Albert, Tom > These can be used in bootcmd to produce DTB file names. > > set_board_env() allows over-ride for use when a developing custom > DTB files. > > Signed-off-by: Eric Nelson > --- > V2 adds void to the function declarations and definitions and adds > a blank to kee

[U-Boot] [PATCH V2] imx: Define common routines to set cpu and board environment variables

2013-11-13 Thread Eric Nelson
These can be used in bootcmd to produce DTB file names. set_board_env() allows over-ride for use when a developing custom DTB files. Signed-off-by: Eric Nelson --- V2 adds void to the function declarations and definitions and adds a blank to keep checkpatch clean. I'm feeling like I missed some