From 9ea5c4b85c4028ebe5665d5ff5209ea1249fd0a0 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 25 Jan 2023 22:11:58 +0100 Subject: [PATCH] move xfs higher in autoprepare --- CHANGELOG | 1 + usr/lib/archboot/installer/autoprepare.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5a0f43f54..98bb4211b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/usr/lib/archboot/installer/autoprepare.sh b/usr/lib/archboot/installer/autoprepare.sh index 1d08ba9db..fc67721f6 100644 --- a/usr/lib/archboot/installer/autoprepare.sh +++ b/usr/lib/archboot/installer/autoprepare.sh @@ -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"