1#!/bin/sh
2# $FreeBSD$
3
4: ${DIALOG_OK=0}
5: ${DIALOG_CANCEL=1}
6: ${DIALOG_HELP=2}
7: ${DIALOG_EXTRA=3}
8: ${DIALOG_ITEM_HELP=4}
9: ${DIALOG_ESC=255}
10
11MACHINE=`uname -m`
12
13kbdcontrol -d >/dev/null 2>&1
14if [ $? -eq 0 ]; then
15	# Syscons: use xterm, start interesting things on other VTYs
16	if [ ${MACHINE} = "pc98" ]; then
17		TERM=cons25w
18	else
19		TERM=xterm
20	fi
21
22	if [ -z "$EXTERNAL_VTY_STARTED" ]; then
23		# Init will clean these processes up if/when the system
24		# goes multiuser
25		touch /tmp/bsdinstall_log
26		tail -f /tmp/bsdinstall_log > /dev/ttyv2 &
27		/usr/libexec/getty autologin ttyv3 &
28		EXTERNAL_VTY_STARTED=1
29	fi
30else
31	# Serial or other console
32	echo
33	echo "Welcome to FreeBSD!"
34	echo
35	echo "Please choose the appropriate terminal type for your system."
36	echo "Common console types are:"
37	echo "   ansi     Standard ANSI terminal"
38	echo "   vt100    VT100 or compatible terminal"
39	echo "   xterm    xterm terminal emulator (or compatible)"
40	echo "   cons25w  cons25w terminal"
41	echo
42	echo -n "Console type [vt100]: "
43	read TERM
44	TERM=${TERM:-vt100}
45fi
46export TERM
47
48if [ -f /etc/installerconfig ]; then
49	if bsdinstall script /etc/installerconfig; then
50		dialog --backtitle "FreeBSD Installer" --title "Complete" --no-cancel --ok-label "Reboot" --pause "Installation of FreeBSD complete! Rebooting in 10 seconds" 10 30 10
51		reboot
52	else
53		dialog --backtitle "FreeBSD Installer" --title "Error" --textbox /tmp/bsdinstall_log 0 0
54	fi
55	exit 
56fi
57
58dialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button --extra-label "Shell" --ok-label "Install" --cancel-label "Live CD" --yesno "Welcome to FreeBSD! Would you like to begin an installation or use the live CD?" 0 0
59
60case $? in
61$DIALOG_OK)	# Install
62	# If not netbooting, have the installer configure the network
63	dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
64	if [ ${dlv:=0} -eq 0 -a ! -f /etc/diskless ]; then
65		BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT
66	fi
67
68	trap true SIGINT	# Ignore cntrl-C here
69	bsdinstall
70	if [ $? -eq 0 ]; then
71		dialog --backtitle "FreeBSD Installer" --title "Complete" --yes-label "Reboot" --no-label "Live CD" --yesno "Installation of FreeBSD complete! Would you like to reboot into the installed system now?" 0 0 && reboot
72	else
73		. /etc/rc.local
74	fi
75	;;
76$DIALOG_CANCEL)	# Live CD
77	exit 0
78	;;
79$DIALOG_EXTRA)	# Shell
80	clear
81	echo "When finished, type 'exit' to return to the installer."
82	/bin/sh
83	. /etc/rc.local
84	;;
85esac
86
87