README.atum8548 621 B

1234567891011121314151617181920212223242526272829
  1. Building U-Boot
  2. ---------------
  3. The ATUM8548 code is known to build using ELDK 4.1.
  4. $ make ATUM8548_config
  5. Configuring for ATUM8548 board...
  6. $ make
  7. Using Flash
  8. -----------
  9. The ATUM8548 board has one flash bank, of 128MB in size (2^23 = 0x08000000).
  10. The BDI2000 commands for copying u-boot into flash are
  11. as follows:
  12. erase 0xFFF80000 0x4000 0x20
  13. prog 0xfff80000 uboot.bin bin
  14. Booting Linux
  15. -------------
  16. U-boot/kermit commands for booting linux via NFS - assumming the proper
  17. bootargs are set - are as follows:
  18. tftp 1000000 uImage.atum
  19. tftp c00000 mpc8548atum.dtb
  20. bootm 1000000 - c00000