summaryrefslogtreecommitdiffstats
path: root/board/eukrea_cpuimx25/env/bin/boot
blob: 2d9b3af01c611356bf02d998369fc3c1c3c8322d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh

. /env/config

if [ x$1 = xjffS2 ]; then
	root=jffs2
	kernel=nand
fi

if [ x$1 = xubifs ]; then
	root=ubifs
	kernel=nand
fi

if [ x$1 = xnet ]; then
	root=net
	kernel=net
fi

if [ x$ip = xdhcp ]; then
	bootargs="$bootargs ip=dhcp"
else
	if [ x$ip = xoff ]; then
		bootargs="$bootargs ip=off"
	else
		bootargs="$bootargs ip=$eth0.ipaddr:$eth0.serverip:$eth0.gateway:$eth0.netmask:::"
	fi
fi

if [ x$root = xjffs2 ]; then
	bootargs="$bootargs root=/dev/mtdblock$rootpartnum_nand rootfstype=jffs2"
fi

if [ x$root = xubifs ]; then
	bootargs="$bootargs root=ubi0:$ubiroot ubi.mtd=$rootpartnum_nand rootfstype=ubifs"
fi

if [ x$root = xnet ]; then
	bootargs="$bootargs root=/dev/nfs nfsroot=$eth0.serverip:$nfsroot,v3,tcp"
fi

bootargs="$bootargs mtdparts=mxc_nand:$nand_parts"

if [ $kernel = net ]; then
	if [ x$ip = xdhcp ]; then
		dhcp
	fi
	tftp $uimage uImage || exit 1
	bootm uImage
else
	bootm /dev/nand0.kernel.bb
fi