From ba9eb77586b82fccaa60d6319e93a3adf0cb55ab Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 22 Feb 2018 11:40:47 +0100 Subject: sometimes drives report they are not aligned And then on reboot it hangs where it should start grub --- scripts/install/install-get-partition | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/install/install-get-partition b/scripts/install/install-get-partition index eee0dc73..8321e156 100755 --- a/scripts/install/install-get-partition +++ b/scripts/install/install-get-partition @@ -698,7 +698,12 @@ create_partitions() { lecho "Creating root partition on /dev/$ldrive" # Make the root partition - output=$(parted --script --align optimal /dev/$ldrive mkpart primary 0% $root_part_size) + # if optimal_io_size is empty use default of 2048s + if [ $(cat /sys/block/$ldrive/queue/optimal_io_size) -gt 0 ]; then + output=$(parted --script --align optimal /dev/$ldrive mkpart primary 0% $root_part_size) + else + output=$(parted --script --align optimal /dev/$ldrive mkpart primary 2048s $root_part_size) + fi status=$? if [ "$status" != 0 ]; then echo -e "Error creating primary partition on $ldrive.\nPlease see $INSTALL_LOG for more details.\nExiting..." -- cgit v1.2.3