From c117f0da5a7888aff643866f63613112e9b50549 Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Sun, 11 Sep 2022 20:02:54 +0200 Subject: [PATCH] Make image big enough --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.44.0