OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / Documentation / FREESCALE-IMX50EVK-HOWTO
1 Freescale IMX50EVK Evaluation Kit
2 ---------------------------------
3
4 The Freescale IMX50EVK development board is based around the iMX508 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 Freescale/IMX50EVK 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 IMX50EVK using the usual uboot loader do this 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=ttymxc0,115200 root=/dev/ram0 initrd=0x72000000,8M
22     tftp 0x70800000 ukernel.bin
23     tftp 0x71ffffc0 urootfs.bin
24     bootm 0x70800000
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