fix mounting order in autoprepare

This commit is contained in:
Tobias Powalowski 2023-06-24 19:59:23 +02:00
parent 1b2259d187
commit 1978702a88
2 changed files with 5 additions and 5 deletions

View file

@ -46,7 +46,7 @@ _autoprepare() {
_FSOPTS=""
command -v mkfs.btrfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} btrfs Btrfs"
command -v mkfs.ext4 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext4 Ext4"
command -v mkfs.xfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} xfs XFS"
command -v mkfs.xfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} xfs XFS"
command -v mkfs.ext3 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext3 Ext3"
command -v mkfs.ext2 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext2 Ext2"
command -v mkfs.f2fs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} f2fs F2FS"
@ -247,7 +247,7 @@ _autoprepare() {
if [[ -n "${_UEFISYS_BOOTDEV}" ]]; then
_FSSPECS="${_FSSPEC_ROOTDEV} ${_FSSPEC_UEFISYSDEV} ${_FSSPEC_HOMEDEV} ${_FSSPEC_SWAPDEV}"
else
_FSSPECS="${_FSSPEC_ROOTDEV} ${_FSSPEC_BOOTDEV} ${_FSSPEC_UEFISYSDEV} ${_FSSPEC_HOMEDEV} ${_FSSPEC_SWAPDEV}"
_FSSPECS="${_FSSPEC_ROOTDEV} ${_FSSPEC_UEFISYSDEV} ${_FSSPEC_BOOTDEV} ${_FSSPEC_HOMEDEV} ${_FSSPEC_SWAPDEV}"
fi
else
_FSSPECS="${_FSSPEC_ROOTDEV} ${_FSSPEC_BOOTDEV} ${_FSSPEC_HOMEDEV} ${_FSSPEC_SWAPDEV}"

View file

@ -30,12 +30,12 @@ fi
_set_title() {
if [[ "${_DESTDIR}" == "/" ]]; then
_TITLE="Archboot Arch Linux (System Setup mode) --> https://archboot.com"
_TITLE="Archboot - Arch Linux (System Setup Mode) --> https://archboot.com"
else
if [[ -e "${_LOCAL_DB}" ]]; then
_TITLE="Archboot Arch Linux Installation (Local mode) --> https://archboot.com"
_TITLE="Archboot - Arch Linux Installation (Local Mode) --> https://archboot.com"
else
_TITLE="Archboot Arch Linux Installation (Online mode) --> https://archboot.com"
_TITLE="Archboot - Arch Linux Installation (Online Mode) --> https://archboot.com"
fi
fi
}