Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Fix a bug when creating MBR/BSD label slices, don't auto-align to 4k,
Browse files Browse the repository at this point in the history
this breaks the loader in interesting ways, and may help fix some GRUB
slowness also.
  • Loading branch information
Kris Moore committed Dec 27, 2013
1 parent f566c15 commit 8364326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-sh/pc-sysinstall/backend/functions-bsdlabel.sh
Expand Up @@ -413,7 +413,7 @@ setup_gpart_partitions()
else
sleep 2
# MBR type
aCmd="gpart add -a 4k ${SOUT} -t ${PARTYPE} -i ${CURPART} ${_wSlice}"
aCmd="gpart add ${SOUT} -t ${PARTYPE} -i ${CURPART} ${_wSlice}"
fi

# Run the gpart add command now
Expand Down

0 comments on commit 8364326

Please sign in to comment.