Lines Matching +full:arm +full:- +full:platform
2 #-
56 --title "$DIALOG_TITLE" \
57 --backtitle "$DIALOG_BACKTITLE" \
58 --hline "$hline" \
59 --ok-label "Ok" \
60 --no-cancel \
61 --inputbox "$prompt" \
68 nentries=$(efibootmgr | grep -c "${EFI_LABEL_NAME}$")
70 if [ ${nentries} -eq 0 ]; then
72 …efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" >…
76 $DIALOG --backtitle "$OSNAME Installer" --title 'Boot Configuration' \
77 …--yesno "One or more \"$OSNAME\" EFI boot manager entries already exist. Would you like to remove …
78 if [ $? -eq $DIALOG_OK ]; then
80 efibootmgr -B -b ${entry}
82 …efibootmgr --create --activate --label "$EFI_LABEL_NAME" --loader "${mntpt}/${FREEBSD_BOOTNAME}" >…
87 [ $? -eq $DIALOG_CANCEL ] && exit 1
88 …efibootmgr --create --activate --label "$FREEBSD_BOOTLABEL" --loader "${mntpt}/${FREEBSD_BOOTNAME}…
94 if [ `uname -m` == powerpc ]; then
95 platform=`sysctl -n hw.platform`
96 if [ "$platform" == ps3 -o "$platform" == powernv ]; then
99 mkdir -p $BSDINSTALL_CHROOT/boot/etc/
106 if [ -n "$(awk '{if ($2=="/boot/efi") printf("%s\n",$1);}' $PATH_FSTAB)" ]; then
107 case $(uname -m) in
111 # arm) ARCHBOOTNAME=arm ;; # No other support for arm install
113 *) die "Unsupported arch $(uname -m) for UEFI install"
116 if [ `sysctl -n machdep.efi_arch` == i386 ]; then
130 mkdir -p "${mntpt}/${FREEBSD_BOOTDIR}" "${mntpt}/${BOOTDIR}"
144 if [ ! -f "${mntpt}/${BOOTNAME}" ]; then