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