summaryrefslogtreecommitdiffstats
path: root/defaultenv/defaultenv-1/bin/init
blob: 2dcddbef2c7e069d21f8a9986e77e2fdc2fe4d7e (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
#!/bin/sh

PATH=/env/bin
export PATH

global hostname

. /env/config
if [ -e /dev/nor0 -a -n "$nor_parts" ]; then
	addpart /dev/nor0 $nor_parts
fi

if [ -e /dev/disk0 -a -n "$disk_parts" ]; then
	addpart /dev/disk0 $disk_parts
fi

if [ -e /dev/nand0 -a -n "$nand_parts" ]; then
	addpart /dev/nand0 $nand_parts
fi

if [ -f /env/bin/init_board ]; then
	. /env/bin/init_board
fi

echo -e "\e[?25h"

if [ -n $autoboot_timeout ]; then
	echo -n "Hit any key to stop autoboot: "
	timeout -a $autoboot_timeout
	if [ $? != 0 ]; then
		exit
	fi

	boot
fi