Skip to content

Commit

Permalink
Double hard disk size
Browse files Browse the repository at this point in the history
  • Loading branch information
klange committed Mar 29, 2013
1 parent 5375fb3 commit 47ce8fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -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 UTILITIES = util/bin/readelf util/bin/typewriter util/bin/bim
EMU = qemu-system-i386 EMU = qemu-system-i386
GENEXT = genext2fs GENEXT = genext2fs
DISK_SIZE = 262144
DD = dd conv=notrunc DD = dd conv=notrunc
BEG = util/mk-beg BEG = util/mk-beg
END = util/mk-end END = util/mk-end
Expand Down Expand Up @@ -143,7 +144,7 @@ toaruos-initrd: .passed
toaruos-disk.img: .userspace-check toaruos-disk.img: .userspace-check
@${BEG} "hdd" "Generating a Hard Disk image..." @${BEG} "hdd" "Generating a Hard Disk image..."
@-rm -f toaruos-disk.img @-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" @${END} "hdd" "Generated Hard Disk image"
@${INFO} "--" "Hard disk image is ready!" @${INFO} "--" "Hard disk image is ready!"


Expand Down

0 comments on commit 47ce8fc

Please sign in to comment.