From f0896bc2a59376f7ee7e2ff87465234d81b26951 Mon Sep 17 00:00:00 2001 From: Drew Moseley Date: Thu, 10 Sep 2020 17:36:00 -0400 Subject: [PATCH] package: Create partitions as ext4. Changelog: Title Signed-off-by: Drew Moseley --- mender-convert-package | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mender-convert-package b/mender-convert-package index e74e0fc..66ca8ed 100755 --- a/mender-convert-package +++ b/mender-convert-package @@ -250,9 +250,9 @@ else run_and_log_cmd "${PARTED} -s ${img_path} unit s mkpart primary fat32 ${boot_part_start} ${boot_part_end}" fi run_and_log_cmd "${PARTED} -s ${img_path} set 1 boot on" -run_and_log_cmd "${PARTED} -s ${img_path} -- unit s mkpart primary ext2 ${rootfsa_start} ${rootfsa_end}" -run_and_log_cmd "${PARTED} -s ${img_path} -- unit s mkpart primary ext2 ${rootfsb_start} ${rootfsb_end}" -run_and_log_cmd "${PARTED} -s ${img_path} -- unit s mkpart primary ext2 ${data_start} ${data_end}" +run_and_log_cmd "${PARTED} -s ${img_path} -- unit s mkpart primary ext4 ${rootfsa_start} ${rootfsa_end}" +run_and_log_cmd "${PARTED} -s ${img_path} -- unit s mkpart primary ext4 ${rootfsb_start} ${rootfsb_end}" +run_and_log_cmd "${PARTED} -s ${img_path} -- unit s mkpart primary ext4 ${data_start} ${data_end}" run_and_log_cmd "${PARTED} -s ${img_path} print" # Update partition uuids if required