move xfs higher in autoprepare

This commit is contained in:
Tobias Powalowski 2023-01-25 22:11:58 +01:00
parent 788a0d981e
commit 9ea5c4b85c
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@ update-installer:
- added network check
setup:
- major cleanup of blockdevice code
- major cleanup of mountpoints code
- new systemd compliant mounting dialogs with /efi or /boot as ESP
- don't format already existing ESP
- don't format already existing swap partition

View file

@ -53,9 +53,9 @@ _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.ext3 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext3 Ext3"
command -v mkfs.ext2 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext2 Ext2"
command -v mkfs.xfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} xfs XFS"
command -v mkfs.f2fs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} f2fs F2FS"
command -v mkfs.nilfs2 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} nilfs2 Nilfs2"
command -v mkfs.jfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} jfs JFS"