From 1258d4b949bac591f570d659181ae0b107343108 Mon Sep 17 00:00:00 2001 From: oxmc7769 Date: Sat, 26 Apr 2025 16:24:00 -0700 Subject: [PATCH] Fix ext4 --- export-image/prerun.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export-image/prerun.sh b/export-image/prerun.sh index 09954a6..40330c7 100755 --- a/export-image/prerun.sh +++ b/export-image/prerun.sh @@ -64,8 +64,8 @@ else fi mkdosfs -n bootfs -F "$FAT_SIZE" -s 4 -v "$BOOT_DEV" > /dev/null -mkdosfs -n recovery -F "16" -s 4 -v "$RECOVERY_DEV" > /dev/null mkfs.ext4 -L rootfs -O "$ROOT_FEATURES" "$ROOT_DEV" > /dev/null +mkfs.ext4 -L recovery "$RECOVERY_DEV" > /dev/null # Create new layout mkdir -p "${ROOTFS_DIR}/part1"