From 47ce8fce81c9f0bb250cb9b0c4fb31223bf1cc7e Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Fri, 29 Mar 2013 11:14:20 -0700 Subject: [PATCH] Double hard disk size --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index edc5e5b5..a98d78b8 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ USERSPACE = $(shell find userspace/ -type f -name '*.c') $(shell find userspace/ UTILITIES = util/bin/readelf util/bin/typewriter util/bin/bim EMU = qemu-system-i386 GENEXT = genext2fs +DISK_SIZE = 262144 DD = dd conv=notrunc BEG = util/mk-beg END = util/mk-end @@ -143,7 +144,7 @@ toaruos-initrd: .passed toaruos-disk.img: .userspace-check @${BEG} "hdd" "Generating a Hard Disk image..." @-rm -f toaruos-disk.img - @${GENEXT} -d hdd -q -b 131072 -N 4096 toaruos-disk.img ${ERRORS} + @${GENEXT} -d hdd -q -b ${DISK_SIZE} -N 4096 toaruos-disk.img ${ERRORS} @${END} "hdd" "Generated Hard Disk image" @${INFO} "--" "Hard disk image is ready!"