6d02d4cbc5
not configure the host's networking if netbooted [1]. Also fix FTP installations behind some firewalls [2]. PR: bin/159583 [2] Reported by: stas [1] Approved by: re (kib)
61 lines
1.6 KiB
Bash
Executable File
61 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
: ${DIALOG_OK=0}
|
|
: ${DIALOG_CANCEL=1}
|
|
: ${DIALOG_HELP=2}
|
|
: ${DIALOG_EXTRA=3}
|
|
: ${DIALOG_ITEM_HELP=4}
|
|
: ${DIALOG_ESC=255}
|
|
|
|
kbdcontrol -d >/dev/null 2>&1
|
|
if [ $? -eq 0 ]; then
|
|
# Syscons: use xterm
|
|
TERM=xterm
|
|
else
|
|
# Serial or other console
|
|
echo
|
|
echo "Welcome to FreeBSD!"
|
|
echo
|
|
echo "Please choose the appropriate terminal type for your system."
|
|
echo "Common console types are:"
|
|
echo " ansi Standard ANSI terminal"
|
|
echo " vt100 VT100 or compatible terminal"
|
|
echo " xterm xterm terminal emulator (or compatible)"
|
|
echo
|
|
echo -n "Console type [vt100]: "
|
|
read TERM
|
|
TERM=${TERM:-vt100}
|
|
fi
|
|
export TERM
|
|
|
|
dialog --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
|
|
|
|
case $? in
|
|
$DIALOG_OK) # Install
|
|
# If not netbooting, have the installer configure the network
|
|
dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
|
|
if [ ${dlv:=0} -eq 0 -a ! -f /etc/diskless ]; then
|
|
BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT
|
|
fi
|
|
|
|
trap true SIGINT # Ignore cntrl-C here
|
|
bsdinstall
|
|
if [ $? -eq 0 ]; then
|
|
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
|
|
else
|
|
. /etc/rc.local
|
|
fi
|
|
;;
|
|
$DIALOG_CANCEL) # Live CD
|
|
exit 0
|
|
;;
|
|
$DIALOG_EXTRA) # Shell
|
|
clear
|
|
echo "When finished, type 'exit' to return to the installer."
|
|
/bin/sh
|
|
. /etc/rc.local
|
|
;;
|
|
esac
|
|
|