From 0ab9801db0e42b3ccc92c84135144bf95da18fdf Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 5 Jun 2022 19:03:48 +0200 Subject: [PATCH] add new default for efi partition to 512M --- usr/lib/archboot/installer/autoprepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/autoprepare.sh b/usr/lib/archboot/installer/autoprepare.sh index fbc1890bd..5ddef4253 100644 --- a/usr/lib/archboot/installer/autoprepare.sh +++ b/usr/lib/archboot/installer/autoprepare.sh @@ -75,7 +75,7 @@ autoprepare() { if [[ "${GUIDPARAMETER}" = "yes" ]]; then if [[ "${_UEFISYS_BOOTPART}" == "1" ]]; then while [[ "${UEFISYS_PART_SET}" = "" ]]; do - DIALOG --inputbox "Enter the size (MB) of your /boot partition,\nMinimum value is 260.\n\nDisk space left: ${DISC_SIZE} MB" 10 65 "1024" 2>"${ANSWER}" || return 1 + DIALOG --inputbox "Enter the size (MB) of your /boot partition,\nMinimum value is 260.\n\nDisk space left: ${DISC_SIZE} MB" 10 65 "512" 2>"${ANSWER}" || return 1 UEFISYS_PART_SIZE="$(cat "${ANSWER}")" if [[ "${UEFISYS_PART_SIZE}" = "" ]]; then DIALOG --msgbox "ERROR: You have entered a invalid size, please enter again." 0 0