From: HimbeerserverDE Date: Sun, 11 Sep 2022 18:02:54 +0000 (+0200) Subject: Make image big enough X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=c117f0da5a7888aff643866f63613112e9b50549;p=loadnothing.git Make image big enough --- diff --git a/Makefile b/Makefile index 147f357..6efc636 100644 --- a/Makefile +++ b/Makefile @@ -11,9 +11,9 @@ stage2/target/x86_64-loadnothing/debug/stage2: stage2/src/main.rs cd stage2 && cargo build nothing.img: magic.bin stage1/boot.bin stage2/target/x86_64-loadnothing/debug/stage2 - dd if=/dev/zero of=nothing.img bs=2M count=1 + dd if=/dev/zero of=nothing.img bs=32M count=1 parted -s nothing.img mklabel msdos - parted -s -a optimal nothing.img mkpart primary fat32 1M 100% + parted -s -a optimal nothing.img mkpart primary fat32 16M 100% doas losetup /dev/loop1 nothing.img doas mkfs.fat /dev/loop1p1 doas losetup -d /dev/loop1