readme.txt 1.2 KB

12345678910111213141516171819202122232425
  1. For the bootloader, NXP has stablized at SDK2.0 (final release). It is
  2. suggested to download the prebuilt from NXP downloads and follow the
  3. release notes for reflashing.
  4. To program the kernel and rootfs created by buildroot into the flash. The
  5. fast way is to tftp transfer the files via one of the network interfaces.
  6. Make sure your devkit has ipaddr and serverip defined to reach your tftp
  7. server.
  8. (Assuming the default u-boot env from NXP)
  9. 1. Program the DTB to NOR flash
  10. => tftpboot $loadaddr t1040d4rdb.dtb; protect off 0xe8800000 +$filesize; erase 0xe8800000 +$filesize; cp.b $loadaddr 0xe8800000 $filesize; protect on 0xe8800000 +$filesize; cmp.b $loadaddr 0xe8800000 $filesize
  11. 2. Program the kernel and rootfs to NOR flash
  12. => tftpboot $loadaddr uImage; protect off 0xe8020000 +$filesize; erase 0xe8020000 +$filesize; cp.b $loadaddr 0xe8020000 $filesize; protect on 0xe8020000 +$filesize; cmp.b $loadaddr 0xe8020000 $filesize
  13. => tftpboot $loadaddr rootfs.cpio.uboot; protect off 0xe9300000 +$filesize; erase 0xe9300000 +$filesize; cp.b $loadaddr 0xe9300000 $filesize; protect on 0xe9300000 +$filesize; cmp.b $loadaddr 0xe9300000 $filesize
  14. 3. Booting your new system
  15. => boot
  16. You can login with user "root".