buildrootschalter/board/freescale/p2020ds
Gustavo Zacarias 7b9d89fad0 configs: add sample for freescale p2020ds
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2014-12-07 23:03:34 +01:00
..
linux-3.12.config configs: add sample for freescale p2020ds 2014-12-07 23:03:34 +01:00
linux-fix-c6187597-breakage.patch configs: add sample for freescale p2020ds 2014-12-07 23:03:34 +01:00
readme.txt configs: add sample for freescale p2020ds 2014-12-07 23:03:34 +01:00

readme.txt

You'll need to program the files created by buildroot into the flash.
The fast way is to tftp transfer the files via one of the network interfaces.

Alternatively you can transfer the files via serial console with an Ymodem
file transfer from your terminal program by using a "loady" command
from the u-boot prompt instead of the "tftp ..." commands stated below.
Beware that serial console file transfers are quite slow!

1. Program the DTB to NOR flash

   => tftp ${loadaddr} p2020ds.dtb
   => erase 0xeff00000 0xeff7ffff
   => cp.b ${loadaddr} 0xeff00000 ${filesize}

2. Program the kernel to NOR flash

   => tftp ${loadaddr} uImage
   => erase 0xec000000 0xec3fffff
   => cp.b ${loadaddr} 0xec000000 ${filesize}

3. Program the root filesystem to NOR flash

   => tftp ${loadaddr} rootfs.jffs2
   => erase 0xec400000 0xeeffffff
   => cp.b ${loadaddr} 0xec400000 ${filesize}

4. Booting your new system

   => setenv jffs2boot 'setenv bootargs root=/dev/mtdblock4 rootfstype=jffs2 rw console=ttyS0,115200;bootm ec000000 - eff00000'

   If you want to set this boot option as default:

   => setenv bootcmd 'run jffs2boot'
   => saveenv

   ...or for a single boot:

   => run jffs2boot

   You can login with user "root".