From 86022700cbb32583ee70fb4c8ca511050f8fd847 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 24 Jan 2023 18:51:06 +0100 Subject: [PATCH] add MULTIBOOT and SINGLEBOOT --- usr/lib/archboot/installer/autoprepare.sh | 2 +- usr/lib/archboot/installer/mountpoints.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/autoprepare.sh b/usr/lib/archboot/installer/autoprepare.sh index a19fa924d..24aeb38a4 100644 --- a/usr/lib/archboot/installer/autoprepare.sh +++ b/usr/lib/archboot/installer/autoprepare.sh @@ -43,7 +43,7 @@ _autoprepare() { _set_device_name_scheme || return 1 fi if [[ -n "${_GUIDPARAMETER}" ]]; then - _dialog --menu "Select the mountpoint of your\nEFI SYSTEM PARTITION (ESP):" 10 40 7 /efi _ /boot _ 2>"${_ANSWER}" || return 1 + _dialog --menu "Select the mountpoint of your\nEFI SYSTEM PARTITION (ESP):" 10 40 7 "/efi" "MULTIBOOT" "/boot" "SINGLEBOOT" 2>"${_ANSWER}" || return 1 _UEFISYS_MP=$(cat "${_ANSWER}") fi if [[ "${_UEFISYS_MP}" == "/boot" ]]; then diff --git a/usr/lib/archboot/installer/mountpoints.sh b/usr/lib/archboot/installer/mountpoints.sh index e3a51963a..7cbac3030 100644 --- a/usr/lib/archboot/installer/mountpoints.sh +++ b/usr/lib/archboot/installer/mountpoints.sh @@ -64,7 +64,7 @@ _enter_mountpoint() { if [[ -n "${_DO_ROOT}" ]]; then _MP="/" elif [[ -n "${_DO_UEFISYSDEV}" ]]; then - _dialog --menu "Select the mountpoint of your\nEFI SYSTEM PARTITION (ESP) on ${_DEV}:" 10 50 7 /efi _ /boot _ 2>"${_ANSWER}" || return 1 + _dialog --menu "Select the mountpoint of your\nEFI SYSTEM PARTITION (ESP) on ${_DEV}:" 10 50 7 "/efi" "MULTIBOOT" "/boot" "SINGLEBOOT" 2>"${_ANSWER}" || return 1 _MP=$(cat "${_ANSWER}") _FSTYPE="vfat" _DO_UEFISYSDEV=""