From 86c20fb37a6587e393d73ed0ec0a4e9f9f84f101 Mon Sep 17 00:00:00 2001 From: Albert Hopkins Date: Tue, 4 Oct 2011 16:36:19 +0000 Subject: [PATCH] Switch to GUID partitioning --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bbc1fb6..e21fa91 100644 --- a/Makefile +++ b/Makefile @@ -86,8 +86,8 @@ $(RAW_IMAGE): qemu-img create -f raw $(RAW_IMAGE) $(DISK_SIZE) partitions: $(RAW_IMAGE) - parted -s $(RAW_IMAGE) mklabel msdos - parted -s $(RAW_IMAGE) mkpart primary ext2 0 $(DISK_SIZE) + parted -s $(RAW_IMAGE) mklabel gpt + parted -s $(RAW_IMAGE) mkpart primary 0 $(DISK_SIZE) parted -s $(RAW_IMAGE) set 1 boot on qemu-nbd -c $(NBD_DEV) $(RAW_IMAGE)