From 8364326cfc22ecee9dfc3d8b82710879725827bf Mon Sep 17 00:00:00 2001 From: Kris Moore Date: Fri, 27 Dec 2013 13:04:11 -0500 Subject: [PATCH] Fix a bug when creating MBR/BSD label slices, don't auto-align to 4k, this breaks the loader in interesting ways, and may help fix some GRUB slowness also. --- src-sh/pc-sysinstall/backend/functions-bsdlabel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-sh/pc-sysinstall/backend/functions-bsdlabel.sh b/src-sh/pc-sysinstall/backend/functions-bsdlabel.sh index 8e9c74d6f..c0f7f3f57 100755 --- a/src-sh/pc-sysinstall/backend/functions-bsdlabel.sh +++ b/src-sh/pc-sysinstall/backend/functions-bsdlabel.sh @@ -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