summaryrefslogtreecommitdiffstats
path: root/utils/pb-console
blob: 636c5ad36dff65d449d310309989d8c6967e6e65 (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
#!/bin/sh

ui=petitboot-nc
shell=sh

detach=0

while [ -n "$1" ]
do
	case "$1" in
	-d)
		detach=1
		;;
	--)
		;;
	*)
		console=$1
		;;
	esac
	shift
done

if [ -n "$console" -a "${console#/dev/}" = "$console" ]
then
	console="/dev/$console"
fi

pb_loop() {
	while :
	do
		$ui
		echo "Exiting petitboot. Type 'exit' to return"
		$shell
	done
}

if [ -n "$console" ]
then
	exec <$console >$console 2>&1
fi

if [ "$detach" = 1 ]
then
	(
		pb_loop
	) &
else
	pb_loop
fi
OpenPOWER on IntegriCloud