xref: /freebsd/usr.sbin/bsdinstall/scripts/bootconfig (revision 599273f942b8dc6f957487bb28f36694dab9dad2)
18befcf7bSNathan Whitehorn#!/bin/sh
28befcf7bSNathan Whitehorn#-
3db8b5613SRebecca Cran# Copyright (c) 2018 Rebecca Cran
48befcf7bSNathan Whitehorn# Copyright (c) 2017 Nathan Whitehorn
58befcf7bSNathan Whitehorn# All rights reserved.
68befcf7bSNathan Whitehorn#
78befcf7bSNathan Whitehorn# Redistribution and use in source and binary forms, with or without
88befcf7bSNathan Whitehorn# modification, are permitted provided that the following conditions
98befcf7bSNathan Whitehorn# are met:
108befcf7bSNathan Whitehorn# 1. Redistributions of source code must retain the above copyright
118befcf7bSNathan Whitehorn#    notice, this list of conditions and the following disclaimer.
128befcf7bSNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright
138befcf7bSNathan Whitehorn#    notice, this list of conditions and the following disclaimer in the
148befcf7bSNathan Whitehorn#    documentation and/or other materials provided with the distribution.
158befcf7bSNathan Whitehorn#
168befcf7bSNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
178befcf7bSNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
188befcf7bSNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
198befcf7bSNathan Whitehorn# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
208befcf7bSNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
218befcf7bSNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
228befcf7bSNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
238befcf7bSNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
248befcf7bSNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
258befcf7bSNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
268befcf7bSNathan Whitehorn# SUCH DAMAGE.
278befcf7bSNathan Whitehorn#
288befcf7bSNathan Whitehorn
29b6644f52SAlfredo Dal'Ava Junior
30a89559c2SYuri PankovBSDCFG_SHARE="/usr/share/bsdconfig"
31a89559c2SYuri Pankov. $BSDCFG_SHARE/common.subr || exit 1
3240c928e7SEmmanuel Vadotf_dprintf "%s: loading_includes..." "$0"
3340c928e7SEmmanuel Vadotf_include $BSDCFG_SHARE/dialog.subr
34a89559c2SYuri Pankov
35a107ddbbSRebecca Cran: ${TMPDIR:="/tmp"}
36a107ddbbSRebecca Cran
37db8b5613SRebecca Crandie() {
38db8b5613SRebecca Cran	echo $*
39db8b5613SRebecca Cran	exit 1
40db8b5613SRebecca Cran}
41db8b5613SRebecca Cran
4240c928e7SEmmanuel Vadotdialog_uefi_entryname()
4340c928e7SEmmanuel Vadot{
4440c928e7SEmmanuel Vadot	local prompt="Please enter a name for the new entry"
4540c928e7SEmmanuel Vadot	local hline=
4640c928e7SEmmanuel Vadot	local value="$*"
4740c928e7SEmmanuel Vadot	local height width
4840c928e7SEmmanuel Vadot
4940c928e7SEmmanuel Vadot	f_dialog_inputbox_size height width \
5040c928e7SEmmanuel Vadot		"$DIALOG_TITLE" "$DIALOG_BACKTITLE" "$prompt" "$value" "$hline"
5140c928e7SEmmanuel Vadot
5240c928e7SEmmanuel Vadot	$DIALOG \
5340c928e7SEmmanuel Vadot		--title "$DIALOG_TITLE"         \
5440c928e7SEmmanuel Vadot		--backtitle "$DIALOG_BACKTITLE" \
5540c928e7SEmmanuel Vadot		--hline "$hline"                \
5640c928e7SEmmanuel Vadot		--ok-label "Ok"                 \
5740c928e7SEmmanuel Vadot		--no-cancel                     \
5840c928e7SEmmanuel Vadot		--inputbox "$prompt"            \
5940c928e7SEmmanuel Vadot		$height $width "$value"         \
6040c928e7SEmmanuel Vadot		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
6140c928e7SEmmanuel Vadot}
6240c928e7SEmmanuel Vadot
6340c928e7SEmmanuel Vadotupdate_uefi_bootentry()
6440c928e7SEmmanuel Vadot{
65cc42ef53SBrad Davis	nentries=$(efibootmgr | grep -c "${EFI_LABEL_NAME}$")
6640c928e7SEmmanuel Vadot	# No entries so directly create one and return
6740c928e7SEmmanuel Vadot	if [ ${nentries} -eq 0 ]; then
6840c928e7SEmmanuel Vadot		f_dprintf "Creating UEFI boot entry"
69cc42ef53SBrad Davis		efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null
7040c928e7SEmmanuel Vadot		return
7140c928e7SEmmanuel Vadot	fi
7240c928e7SEmmanuel Vadot
73b94e1926SJens Schweikhardt	$DIALOG --backtitle "$OSNAME Installer" --title 'Boot Configuration' \
74cc42ef53SBrad Davis	    --yesno "There are multiple \"$OSNAME\" EFI boot entries. Would you like to remove them all and add a new one?" 0 0
7540c928e7SEmmanuel Vadot	if [ $? -eq $DIALOG_OK ]; then
76cc42ef53SBrad Davis		for entry in $(efibootmgr | awk "\$NF == \"$EFI_LABEL_NAME\" { sub(/.*Boot/,\"\", \$1); sub(/\*/,\"\", \$1); print \$1 }"); do
7740c928e7SEmmanuel Vadot			efibootmgr -B -b ${entry}
7840c928e7SEmmanuel Vadot		done
79cc42ef53SBrad Davis		efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null
8040c928e7SEmmanuel Vadot		return
8140c928e7SEmmanuel Vadot	fi
8240c928e7SEmmanuel Vadot
83cc42ef53SBrad Davis	FREEBSD_BOOTLABEL=$(dialog_uefi_entryname "${EFI_LABEL_NAME}")
8440c928e7SEmmanuel Vadot	[ $? -eq $DIALOG_CANCEL ] && exit 1
8540c928e7SEmmanuel Vadot	efibootmgr --create --activate --label "$FREEBSD_BOOTLABEL" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null
8640c928e7SEmmanuel Vadot}
8740c928e7SEmmanuel Vadot
88b94e1926SJens Schweikhardtf_dialog_title "Boot Configuration"
89cc42ef53SBrad Davisf_dialog_backtitle "$OSNAME Installer"
9040c928e7SEmmanuel Vadot
918befcf7bSNathan Whitehornif [ `uname -m` == powerpc ]; then
928befcf7bSNathan Whitehorn	platform=`sysctl -n hw.platform`
938befcf7bSNathan Whitehorn	if [ "$platform" == ps3 -o "$platform" == powernv ]; then
948befcf7bSNathan Whitehorn		rootpart=$(awk '{ if($2 == "/") printf("%s:%s\n", $3, $1); }' $PATH_FSTAB)
95b6644f52SAlfredo Dal'Ava Junior		kboot_conf=$BSDINSTALL_CHROOT/boot/etc/kboot.conf
968befcf7bSNathan Whitehorn		mkdir -p $BSDINSTALL_CHROOT/boot/etc/
97b6644f52SAlfredo Dal'Ava Junior		echo default=$FREEBSD_BOOTLABEL > $kboot_conf
98b6644f52SAlfredo Dal'Ava Junior		echo $FREEBSD_BOOTLABEL=\'/kernel/kernel kernelname=/boot/kernel/kernel vfs.root.mountfrom=${rootpart}\' >> $kboot_conf
998befcf7bSNathan Whitehorn	fi
1008befcf7bSNathan Whitehornfi
1018befcf7bSNathan Whitehorn
1020b7472b3SNathan Whitehorn# Update the ESP (EFI System Partition) with the new bootloader if we have an ESP
103e77cf2a4SNathan Whitehornif [ -n "$(awk '{if ($2=="/boot/efi") printf("%s\n",$1);}' $PATH_FSTAB)" ]; then
104c6d56081SWarner Losh	case $(uname -m) in
105c6d56081SWarner Losh	    arm64)	ARCHBOOTNAME=aa64 ;;
106c6d56081SWarner Losh	    amd64)	ARCHBOOTNAME=x64 ;;
1077b08a307SMitchell Horne	    riscv)	ARCHBOOTNAME=riscv64 ;;
108c6d56081SWarner Losh    #	    arm)	ARCHBOOTNAME=arm ;; # No other support for arm install
109c6d56081SWarner Losh    #	    i386)	ARCHBOOTNAME=ia32 ;; # no support for this in i386 kernels, rare machines
110c6d56081SWarner Losh	    *)		die "Unsupported arch $(uname -m) for UEFI install"
111c6d56081SWarner Losh	esac
112*599273f9SAhmad Khalifa
113*599273f9SAhmad Khalifa	if [ `sysctl -n machdep.efi_arch` == i386 ]; then
114*599273f9SAhmad Khalifa		ARCHBOOTNAME=ia32
115*599273f9SAhmad Khalifa		file=loader_ia32.efi
116*599273f9SAhmad Khalifa	else
117*599273f9SAhmad Khalifa		file=loader.efi
118*599273f9SAhmad Khalifa	fi
119*599273f9SAhmad Khalifa
120676b7d07SMitchell Horne	BOOTDIR="/efi/boot"
121676b7d07SMitchell Horne	BOOTNAME="${BOOTDIR}/boot${ARCHBOOTNAME}.efi"
122676b7d07SMitchell Horne	FREEBSD_BOOTDIR="/efi/freebsd"
123*599273f9SAhmad Khalifa	FREEBSD_BOOTNAME="${FREEBSD_BOOTDIR}/${file}"
1240b7472b3SNathan Whitehorn	mntpt="$BSDINSTALL_CHROOT/boot/efi"
125db8b5613SRebecca Cran
126*599273f9SAhmad Khalifa	f_dprintf "Installing ${file} onto ESP"
127676b7d07SMitchell Horne	mkdir -p "${mntpt}/${FREEBSD_BOOTDIR}" "${mntpt}/${BOOTDIR}"
128*599273f9SAhmad Khalifa	cp "$BSDINSTALL_CHROOT/boot/${file}" "${mntpt}/${FREEBSD_BOOTNAME}"
129db8b5613SRebecca Cran
130c6d56081SWarner Losh	#
131*599273f9SAhmad Khalifa	# UEFI defines a way to specifically select what to boot
132*599273f9SAhmad Khalifa	# (which we do via efibootmgr). However, if we booted from an ia32
133*599273f9SAhmad Khalifa	# UEFI environment, we wouldn't have access to efirt. In addition,
134*599273f9SAhmad Khalifa	# virtual environments often times lack support for the NV variables
135*599273f9SAhmad Khalifa	# efibootmgr sets, and some UEFI implementations have features that
136*599273f9SAhmad Khalifa	# interfere with the setting of these variables. To combat that, we
137*599273f9SAhmad Khalifa	# install the default removable media boot file if it doesn't exist.
138*599273f9SAhmad Khalifa	# We don't install it all the time since that can interfere with other
139*599273f9SAhmad Khalifa	# installations on the drive (like rEFInd).
140c6d56081SWarner Losh	#
141c6d56081SWarner Losh	if [ ! -f "${mntpt}/${BOOTNAME}" ]; then
142*599273f9SAhmad Khalifa		cp "$BSDINSTALL_CHROOT/boot/${file}" "${mntpt}/${BOOTNAME}"
143c6d56081SWarner Losh	fi
144c6d56081SWarner Losh
145*599273f9SAhmad Khalifa	if [ "$BSDINSTALL_CONFIGCURRENT" ] && [ "$ARCHBOOTNAME" != ia32 ]; then
14640c928e7SEmmanuel Vadot		update_uefi_bootentry
14740923b0cSNathan Whitehorn	fi
148db8b5613SRebecca Cran
1490b7472b3SNathan Whitehorn	f_dprintf "Finished configuring ESP"
150db8b5613SRebecca Cranfi
151db8b5613SRebecca Cran
152db8b5613SRebecca Cran# Add boot0cfg for MBR BIOS booting?
153