1 You'll need to program the files created by buildroot into the flash.
2 The fast way is to tftp transfer the files via one of the network interfaces.
4 Alternatively you can transfer the files via serial console with an Ymodem
5 file transfer from your terminal program by using a "loady" command
6 from the u-boot prompt instead of the "tftp ..." commands stated below.
7 Beware that serial console file transfers are quite slow!
9 1. Program the DTB to NOR flash
11 => tftp $loadaddr p1010rdb-pa.dtb
12 => erase 0xee000000 +$filesize
13 => cp.b $loadaddr 0xee000000 $filesize
15 2. Program the kernel to NOR flash
17 => tftp $loadaddr uImage
18 => erase 0xee080000 +$filesize
19 => cp.b $loadaddr 0xee080000 $filesize
21 3. Program the root filesystem to NOR flash
23 => tftp $loadaddr rootfs.jffs2
24 => erase 0xee800000 0xeff5ffff
25 => cp.b $loadaddr 0xee800000 $filesize
27 4. Booting your new system
29 => setenv norboot 'setenv bootargs root=/dev/mtdblock2 rootfstype=jffs2 console=$consoledev,$baudrate;bootm 0xee080000 - 0xee000000'
31 If you want to set this boot option as default:
33 => setenv bootcmd 'run norboot'
36 ...or for a single boot:
40 You can login with user "root".