]> git.lizzy.rs Git - loadnothing.git/commitdiff
Make image big enough
authorHimbeerserverDE <himbeerserverde@gmail.com>
Sun, 11 Sep 2022 18:02:54 +0000 (20:02 +0200)
committerHimbeerserverDE <himbeerserverde@gmail.com>
Sun, 11 Sep 2022 18:02:54 +0000 (20:02 +0200)
Makefile

index 147f357d1477e74813613ecdbfd22723b9047158..6efc6364465cea863752b623ccdb111bc3017e3d 100644 (file)
--- 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