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 48dialog --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 49 50case $? in 51$DIALOG_OK) # Install 52 # If not netbooting, have the installer configure the network 53 dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null` 54 if [ ${dlv:=0} -eq 0 -a ! -f /etc/diskless ]; then 55 BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT 56 fi 57 58 trap true SIGINT # Ignore cntrl-C here 59 bsdinstall 60 if [ $? -eq 0 ]; then 61 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 62 else 63 . /etc/rc.local 64 fi 65 ;; 66$DIALOG_CANCEL) # Live CD 67 exit 0 68 ;; 69$DIALOG_EXTRA) # Shell 70 clear 71 echo "When finished, type 'exit' to return to the installer." 72 /bin/sh 73 . /etc/rc.local 74 ;; 75esac 76 77