Lines Matching +full:activate +full:- +full:to +full:- +full:activate
2 #-
17 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 --title "$DIALOG_TITLE" \
57 --backtitle "$DIALOG_BACKTITLE" \
58 --hline "$hline" \
59 --ok-label "Ok" \
60 --no-cancel \
61 --inputbox "$prompt" \
66 # Copy to the normal FreeBSD location. Also copy to the default location if it
77 mkdir -p "${freebsd_dir}" "${default_dir}"
79 if [ ! -f "${default_dir}/${dest}" ]; then
86 nentries=$(efibootmgr | grep -c "${EFI_LABEL_NAME}$")
88 if [ ${nentries} -eq 0 ]; then
90 …efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" >…
94 $DIALOG --backtitle "$OSNAME Installer" --title 'Boot Configuration' \
95 …--yesno "One or more \"$OSNAME\" EFI boot manager entries already exist. Would you like to remove …
96 if [ $? -eq $DIALOG_OK ]; then
98 efibootmgr -B -b ${entry}
100 …efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" >…
105 [ $? -eq $DIALOG_CANCEL ] && exit 1
106 …efibootmgr --create --activate --label "$FREEBSD_BOOTLABEL" --loader "${mntpt}/${FREEBSD_BOOTNAME}…
112 if [ `uname -m` == powerpc ]; then
113 platform=`sysctl -n hw.platform`
114 if [ "$platform" == ps3 -o "$platform" == powernv ]; then
117 mkdir -p $BSDINSTALL_CHROOT/boot/etc/
124 if [ -n "$(awk '{if ($2=="/boot/efi") printf("%s\n",$1);}' $PATH_FSTAB)" ]; then
125 case $(uname -m) in
131 *) die "Unsupported arch $(uname -m) for UEFI install"
134 # Support the weird 32-bit firmware loading 64-bit kernels
135 if [ `sysctl -n machdep.efi_arch` == i386 ]; then
149 # zfsboot records the extra esp partitions it creates to -esps. These
152 esps=${TMPDIR:-"/tmp"}/bsdinstall-esps
153 if [ -f "$esps" ]; then
154 mntpt=$(mktemp -d -t bsdinstall-esp)
157 mount -t msdos "$dev" "$mntpt"
166 # Try to set the UEFI NV BootXXXX variables to record the boot location