From ab8cea0b5dc9155e370e5afa85e3c974096cc7aa Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 30 Jan 2015 11:15:31 +0000 Subject: [PATCH] Use sfdisk to add a partition table to the disks. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a232ee6..f83471f 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ init: init.c %.img: rm -f $@ truncate -s 1G $@ + echo '2048,,L' | sfdisk $@ clean: rm -f $(disks) $(modules) init initrd -- 1.8.3.1