Use parted to create partition table (issue #90)
authorSebastian Pipping <sebastian@pipping.org>
Thu, 30 Jul 2015 15:41:40 +0000 (17:41 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 22 Feb 2016 21:16:02 +0000 (22:16 +0100)
grml-debootstrap

index ac1fe8b..732dfc1 100755 (executable)
@@ -1102,8 +1102,7 @@ prepare_vm() {
   if [ -n "$VMFILE" ]; then
     qemu-img create -f raw "${TARGET}" "${VMSIZE}"
   fi
-  echo 4 66 | /usr/share/grml-debootstrap/bootgrub.mksh -A | dd of="$TARGET" conv=notrunc
-  dd if=/dev/zero bs=1 conv=notrunc count=64 seek=446 of="$TARGET"
+  parted -s "${TARGET}" 'mklabel msdos'
   if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
     einfo "Adjusting disk signature to a fixed (non-random) value"
     MBRTMPFILE=$(mktemp)