summaryrefslogtreecommitdiffstats
path: root/board/at91sam9260ek/env/bin/init
blob: b8d83998426930f1c3a4cd1f930083c433b9d8d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

PATH=/env/bin
export PATH

. /env/config

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 udate_root [<imagename>] to update rootfs into flash"
	echo
	exit
fi

boot