readme.txt 840 B

123456789101112131415161718192021222324252627282930313233343536
  1. Sheevaplug
  2. ==========
  3. Once the build process is finished you will have the following files
  4. in the output/images/ directory:
  5. - u-boot.kwb
  6. - uImage.kirkwood-sheevaplug
  7. - rootfs.jffs2
  8. Copy these to a TFTP server, connect ethernet and mini-USB cable and
  9. power up the board. Stop the board in U-Boot and update U-Boot by
  10. executing:
  11. setenv serverip <ipaddress-of-tftp-server>
  12. setenv bootfile <path/to/u-boot.kwb>
  13. bootp
  14. nand erase 0x0 0x80000
  15. nand write $fileaddr 0x0 0x80000
  16. reset
  17. Once the new U-Boot boots up, stop it again and update Linux kernel
  18. and rootfs by:
  19. setenv serverip <ipaddress-of-tftp-server>
  20. setenv bootfile <path/to/uImage.kirkwood-sheevaplug>
  21. bootp
  22. nand erase.part kernel
  23. nand write $fileaddr kernel 0x400000
  24. setenv bootfile <path/to/rootfs.jffs2>
  25. bootp
  26. nand erase.part rootfs
  27. nand write $fileaddr rootfs $filesize
  28. reset