summaryrefslogtreecommitdiffstats
path: root/board/ipe337/env/bin/init
blob: 9ca41d61528e4a22f0a3bd500101237f6aee1fc3 (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
#!/bin/sh

PATH=/env/bin
export PATH

. /env/config
addpart /dev/nor0 $mtdparts

echo
echo -n "Hit any key to stop autoboot: "
timeout -a $autoboot_timeout
if [ $? != 0 ]; then
	echo
	echo "Type update_kernel [<imagename>] to update kernel into flash."
	echo "Type update_system [<imagename>] to update rootfs into flash."
	echo "Type update_application [<imagename>] to update applications into flash."
	echo "Type update_persistent [<imagename>] to update persistent into flash."
	echo "Type update_ubootenv [<imagename>] to update ubootenv into flash (use with care!)."
	echo "Type reset_ageing to initialize the ageing partittion (use with care!)."
	echo
	exit
fi

boot