OSDN Git Service

Add MS7619SE
[uclinux-h8/uClinux-dist.git] / Documentation / GLOBALSCALE-MIRABOX-HOWTO
1 Globalscale MiraBox
2 -------------------
3
4 The Glolalscale MiraBox board is based around the Marvel Armada 370 SoC.
5 It has 512Mb of RAM, serial port, ethernet port, SD-card and a few other
6 peripherals fitted.
7
8 Generate images for this board using the Globalscale/MiraBox uClinux-dist
9 target. You should select the linux-3.x kernel and uClibc when building.
10 The build will generate 2 binaries that we can then load onto the board,
11 images/ukernel.bin and images/urootfs.bin.
12
13 You can load onto the MiraBox using the usual uboot loader that is installed
14 in the boot ROM of the board. (You can break to the uboot serial port prompt,
15 by hitting a key during the early uboot startup).
16
17 Use the following example commands to load and run:
18
19     set ipaddr 192.168.0.111
20     set serverip 192.168.0.22
21     set bootargs console=ttyS0,115200 root=/dev/ram0 initrd=0x03000000,8M
22     tftp 0x02000000 ukernel.bin
23     tftp 0x02ffffc0 urootfs.bin
24     bootm 0x02000000
25
26 This assumes you have a local network with addresses 192.168.0.0/24, and
27 a tftp server at 192.168.0.22. Adjust the above commands as necessary for
28 your different network setup.
29
30 The console will be the serial port (at the default 115200,8,n,1).
31