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 32*754bc3dcSChattrapat Sangmanee 33*754bc3dcSChattrapat SangmaneeFREEBSD_BOOTLABEL=$OSNAME 34*754bc3dcSChattrapat Sangmanee 3540c928e7SEmmanuel Vadotf_dprintf "%s: loading_includes..." "$0" 3640c928e7SEmmanuel Vadotf_include $BSDCFG_SHARE/dialog.subr 37a89559c2SYuri Pankov 38a107ddbbSRebecca Cran: ${TMPDIR:="/tmp"} 39a107ddbbSRebecca Cran 40db8b5613SRebecca Crandie() { 41db8b5613SRebecca Cran echo $* 42db8b5613SRebecca Cran exit 1 43db8b5613SRebecca Cran} 44db8b5613SRebecca Cran 4540c928e7SEmmanuel Vadotdialog_uefi_entryname() 4640c928e7SEmmanuel Vadot{ 4740c928e7SEmmanuel Vadot local prompt="Please enter a name for the new entry" 4840c928e7SEmmanuel Vadot local hline= 4940c928e7SEmmanuel Vadot local value="$*" 5040c928e7SEmmanuel Vadot local height width 5140c928e7SEmmanuel Vadot 5240c928e7SEmmanuel Vadot f_dialog_inputbox_size height width \ 5340c928e7SEmmanuel Vadot "$DIALOG_TITLE" "$DIALOG_BACKTITLE" "$prompt" "$value" "$hline" 5440c928e7SEmmanuel Vadot 5540c928e7SEmmanuel Vadot $DIALOG \ 5640c928e7SEmmanuel Vadot --title "$DIALOG_TITLE" \ 5740c928e7SEmmanuel Vadot --backtitle "$DIALOG_BACKTITLE" \ 5840c928e7SEmmanuel Vadot --hline "$hline" \ 5940c928e7SEmmanuel Vadot --ok-label "Ok" \ 6040c928e7SEmmanuel Vadot --no-cancel \ 6140c928e7SEmmanuel Vadot --inputbox "$prompt" \ 6240c928e7SEmmanuel Vadot $height $width "$value" \ 6340c928e7SEmmanuel Vadot 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 6440c928e7SEmmanuel Vadot} 6540c928e7SEmmanuel Vadot 6640c928e7SEmmanuel Vadotupdate_uefi_bootentry() 6740c928e7SEmmanuel Vadot{ 68cc42ef53SBrad Davis nentries=$(efibootmgr | grep -c "${EFI_LABEL_NAME}$") 6940c928e7SEmmanuel Vadot # No entries so directly create one and return 7040c928e7SEmmanuel Vadot if [ ${nentries} -eq 0 ]; then 7140c928e7SEmmanuel Vadot f_dprintf "Creating UEFI boot entry" 72cc42ef53SBrad Davis efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null 7340c928e7SEmmanuel Vadot return 7440c928e7SEmmanuel Vadot fi 7540c928e7SEmmanuel Vadot 76b94e1926SJens Schweikhardt $DIALOG --backtitle "$OSNAME Installer" --title 'Boot Configuration' \ 77cc42ef53SBrad Davis --yesno "There are multiple \"$OSNAME\" EFI boot entries. Would you like to remove them all and add a new one?" 0 0 7840c928e7SEmmanuel Vadot if [ $? -eq $DIALOG_OK ]; then 79cc42ef53SBrad Davis for entry in $(efibootmgr | awk "\$NF == \"$EFI_LABEL_NAME\" { sub(/.*Boot/,\"\", \$1); sub(/\*/,\"\", \$1); print \$1 }"); do 8040c928e7SEmmanuel Vadot efibootmgr -B -b ${entry} 8140c928e7SEmmanuel Vadot done 82cc42ef53SBrad Davis efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null 8340c928e7SEmmanuel Vadot return 8440c928e7SEmmanuel Vadot fi 8540c928e7SEmmanuel Vadot 86cc42ef53SBrad Davis FREEBSD_BOOTLABEL=$(dialog_uefi_entryname "${EFI_LABEL_NAME}") 8740c928e7SEmmanuel Vadot [ $? -eq $DIALOG_CANCEL ] && exit 1 8840c928e7SEmmanuel Vadot efibootmgr --create --activate --label "$FREEBSD_BOOTLABEL" --loader "${mntpt}/${FREEBSD_BOOTNAME}" > /dev/null 8940c928e7SEmmanuel Vadot} 9040c928e7SEmmanuel Vadot 91b94e1926SJens Schweikhardtf_dialog_title "Boot Configuration" 92cc42ef53SBrad Davisf_dialog_backtitle "$OSNAME Installer" 9340c928e7SEmmanuel Vadot 948befcf7bSNathan Whitehornif [ `uname -m` == powerpc ]; then 958befcf7bSNathan Whitehorn platform=`sysctl -n hw.platform` 968befcf7bSNathan Whitehorn if [ "$platform" == ps3 -o "$platform" == powernv ]; then 978befcf7bSNathan Whitehorn rootpart=$(awk '{ if($2 == "/") printf("%s:%s\n", $3, $1); }' $PATH_FSTAB) 98b6644f52SAlfredo Dal'Ava Junior kboot_conf=$BSDINSTALL_CHROOT/boot/etc/kboot.conf 998befcf7bSNathan Whitehorn mkdir -p $BSDINSTALL_CHROOT/boot/etc/ 100b6644f52SAlfredo Dal'Ava Junior echo default=$FREEBSD_BOOTLABEL > $kboot_conf 101b6644f52SAlfredo Dal'Ava Junior echo $FREEBSD_BOOTLABEL=\'/kernel/kernel kernelname=/boot/kernel/kernel vfs.root.mountfrom=${rootpart}\' >> $kboot_conf 1028befcf7bSNathan Whitehorn fi 1038befcf7bSNathan Whitehornfi 1048befcf7bSNathan Whitehorn 1050b7472b3SNathan Whitehorn# Update the ESP (EFI System Partition) with the new bootloader if we have an ESP 106e77cf2a4SNathan Whitehornif [ -n "$(awk '{if ($2=="/boot/efi") printf("%s\n",$1);}' $PATH_FSTAB)" ]; then 107c6d56081SWarner Losh case $(uname -m) in 108c6d56081SWarner Losh arm64) ARCHBOOTNAME=aa64 ;; 109c6d56081SWarner Losh amd64) ARCHBOOTNAME=x64 ;; 1107b08a307SMitchell Horne riscv) ARCHBOOTNAME=riscv64 ;; 111c6d56081SWarner Losh # arm) ARCHBOOTNAME=arm ;; # No other support for arm install 112c6d56081SWarner Losh # i386) ARCHBOOTNAME=ia32 ;; # no support for this in i386 kernels, rare machines 113c6d56081SWarner Losh *) die "Unsupported arch $(uname -m) for UEFI install" 114c6d56081SWarner Losh esac 115599273f9SAhmad Khalifa 116599273f9SAhmad Khalifa if [ `sysctl -n machdep.efi_arch` == i386 ]; then 117599273f9SAhmad Khalifa ARCHBOOTNAME=ia32 118599273f9SAhmad Khalifa file=loader_ia32.efi 119599273f9SAhmad Khalifa else 120599273f9SAhmad Khalifa file=loader.efi 121599273f9SAhmad Khalifa fi 122599273f9SAhmad Khalifa 123676b7d07SMitchell Horne BOOTDIR="/efi/boot" 124676b7d07SMitchell Horne BOOTNAME="${BOOTDIR}/boot${ARCHBOOTNAME}.efi" 125676b7d07SMitchell Horne FREEBSD_BOOTDIR="/efi/freebsd" 126599273f9SAhmad Khalifa FREEBSD_BOOTNAME="${FREEBSD_BOOTDIR}/${file}" 1270b7472b3SNathan Whitehorn mntpt="$BSDINSTALL_CHROOT/boot/efi" 128db8b5613SRebecca Cran 129599273f9SAhmad Khalifa f_dprintf "Installing ${file} onto ESP" 130676b7d07SMitchell Horne mkdir -p "${mntpt}/${FREEBSD_BOOTDIR}" "${mntpt}/${BOOTDIR}" 131599273f9SAhmad Khalifa cp "$BSDINSTALL_CHROOT/boot/${file}" "${mntpt}/${FREEBSD_BOOTNAME}" 132db8b5613SRebecca Cran 133c6d56081SWarner Losh # 134599273f9SAhmad Khalifa # UEFI defines a way to specifically select what to boot 135599273f9SAhmad Khalifa # (which we do via efibootmgr). However, if we booted from an ia32 136599273f9SAhmad Khalifa # UEFI environment, we wouldn't have access to efirt. In addition, 137599273f9SAhmad Khalifa # virtual environments often times lack support for the NV variables 138599273f9SAhmad Khalifa # efibootmgr sets, and some UEFI implementations have features that 139599273f9SAhmad Khalifa # interfere with the setting of these variables. To combat that, we 140599273f9SAhmad Khalifa # install the default removable media boot file if it doesn't exist. 141599273f9SAhmad Khalifa # We don't install it all the time since that can interfere with other 142599273f9SAhmad Khalifa # installations on the drive (like rEFInd). 143c6d56081SWarner Losh # 144c6d56081SWarner Losh if [ ! -f "${mntpt}/${BOOTNAME}" ]; then 145599273f9SAhmad Khalifa cp "$BSDINSTALL_CHROOT/boot/${file}" "${mntpt}/${BOOTNAME}" 146c6d56081SWarner Losh fi 147c6d56081SWarner Losh 148599273f9SAhmad Khalifa if [ "$BSDINSTALL_CONFIGCURRENT" ] && [ "$ARCHBOOTNAME" != ia32 ]; then 14940c928e7SEmmanuel Vadot update_uefi_bootentry 15040923b0cSNathan Whitehorn fi 151db8b5613SRebecca Cran 1520b7472b3SNathan Whitehorn f_dprintf "Finished configuring ESP" 153db8b5613SRebecca Cranfi 154db8b5613SRebecca Cran 155db8b5613SRebecca Cran# Add boot0cfg for MBR BIOS booting? 156