summaryrefslogtreecommitdiff
path: root/scripts/install-system
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install-system')
-rwxr-xr-xscripts/install-system3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/install-system b/scripts/install-system
index 9a860d63..99782fb1 100755
--- a/scripts/install-system
+++ b/scripts/install-system
@@ -867,7 +867,8 @@ create_partitions() {
echo "Creating root partition on /dev/$ldrive" >> $INSTALL_LOG
# make the root partition
- output=$(parted -s /dev/$ldrive mkpart primary $start_offset $root_part_size)
+ # align at optimal block boundary
+ output=$(parted -s -a optimal /dev/$ldrive mkpart primary $start_offset $root_part_size)
status=$?
if [ "$status" != 0 ]; then
echo -e "Error creating primary partition on $ldrive.\nPlease see $INSTALL_LOG for more details.\nExiting..."