Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Otavio Salvador
On Tue, Feb 12, 2013 at 6:38 AM, Stefano Babic wrote: > Simple howto to add support to a board > for booting the kernel from SPL ("Falcon" mode). > > Signed-off-by: Stefano Babic > --- > Changes in v5: > - several fixes for the language, rephrasing some unclear parts (Vikram > Narayanan) > > Cha

Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Andreas Bießmann
On 02/12/2013 01:52 PM, Stefan Roese wrote: > On 12.02.2013 13:44, Andreas Bießmann wrote: >>> 3. Use "fdt" commands to patch the DT blob: >>> => fdt addr 180 >>> => fdt boardsetup >>> => fdt chosen >>> >>> 4. Display patched DT blob (optional): >>> => fdt print >>> >>> 5. Save fdt to NOR flash

Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Stefano Babic
On 12/02/2013 13:44, Andreas Bießmann wrote: > >> Stefano, perhaps you could integrate this into this README as well. > > +1 Right, I will push V6 with changes you suggested and integrating Stefan's part. Regards, Stefano Babic -- =

Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Stefan Roese
On 12.02.2013 13:44, Andreas Bießmann wrote: >> 3. Use "fdt" commands to patch the DT blob: >> => fdt addr 180 >> => fdt boardsetup >> => fdt chosen >> >> 4. Display patched DT blob (optional): >> => fdt print >> >> 5. Save fdt to NOR flash: >> => erase fc06 fc07 >> => cp.b 180 fc06

Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Andreas Bießmann
Dear Stefan Roese, On 02/12/2013 01:09 PM, Stefan Roese wrote: > On 12.02.2013 12:48, Andreas Bießmann wrote: > 3. Use "fdt" commands to patch the DT blob: > => fdt addr 180 > => fdt boardsetup > => fdt chosen > > 4. Display patched DT blob (optional): > => fdt print > > 5. Save fdt to NO

Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Stefan Roese
On 12.02.2013 12:48, Andreas Bießmann wrote: > The spl export command does not write to a storage media. The user is > responsible to transfer the gathered information (assembled ATAGS list > or prepared FDT) from temporary storage in RAM into persistant storage > after each run of 'spl export'.

Re: [U-Boot] [PATCH v5 1/3] Add README for the "Falcon" mode

2013-02-12 Thread Andreas Bießmann
Dear Stefano Babic, On 02/12/2013 09:38 AM, Stefano Babic wrote: > Simple howto to add support to a board > for booting the kernel from SPL ("Falcon" mode). > > Signed-off-by: Stefano Babic > --- > Changes in v5: > - several fixes for the language, rephrasing some unclear parts (Vikram > Naraya