Add exfatprogs to base packages (#3448)

Complements 279259d547
This commit is contained in:
David Wales
2025-11-18 00:27:43 -08:00
committed by GitHub
parent 83a8740fc8
commit 72dc352c1a
3 changed files with 5 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ iso2sd() {
fi
}
# Format an entire drive for a single partition using ext4
# Format an entire drive for a single partition using exFAT
format-drive() {
if [ $# -ne 2 ]; then
echo "Usage: format-drive <device> <name>"
@@ -36,7 +36,6 @@ format-drive() {
sudo partprobe "$1" || true
sudo udevadm settle || true
omarchy-pkg-add exfatprogs
sudo mkfs.exfat -n "$2" "$partition"
echo "Drive $1 formatted as exFAT and labeled '$2'."