summaryrefslogtreecommitdiffstats
path: root/board/x86_generic/env/bin/init
blob: 2924a4449a8dd2eebff3a91639a56c738342e943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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
        exit
fi

boot