diff --git a/usr/lib/archboot/installer/autoprepare.sh b/usr/lib/archboot/installer/autoprepare.sh index 08f405564..aa48f5c09 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) 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 40 7 /efi _ /boot _ 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 df277bbd6..9425b0f04 100644 --- a/usr/lib/archboot/installer/mountpoints.sh +++ b/usr/lib/archboot/installer/mountpoints.sh @@ -181,9 +181,9 @@ _mountpoints() { if [[ -n "${_DO_ROOT}" ]]; then _dialog --menu "Select the device to mount as /:" 15 50 12 ${_DEVS} 2>"${_ANSWER}" || return 1 elif [[ -n "${_DO_UEFISYSDEV}" ]]; then - _dialog --menu "Select the device to mount as\nEfi System Partition (ESP):" 15 50 12 ${_DEVS} 2>"${_ANSWER}" || return 1 + _dialog --menu "Select the device to mount as\nEfi System Partition (ESP):" 15 40 12 ${_DEVS} 2>"${_ANSWER}" || return 1 else - _dialog --menu "Select any additional devices to mount\nunder your new root:" 15 52 12 ${_DEVS} DONE _ 2>"${_ANSWER}" || return 1 + _dialog --menu "Select any additional devices to mount\nunder your new root:" 15 40 12 ${_DEVS} DONE _ 2>"${_ANSWER}" || return 1 fi _DEV=$(cat "${_ANSWER}") if [[ "${_DEV}" != "DONE" ]]; then