From d1c7e7a4af59e63b8b2ad3744413be8785a4eb3c Mon Sep 17 00:00:00 2001 From: Nasir Hossain Date: Fri, 16 Feb 2024 04:32:39 +0600 Subject: [PATCH] fix: set the image size to 256M --- build.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bash b/build.bash index c8d4db3..2330b05 100755 --- a/build.bash +++ b/build.bash @@ -47,7 +47,7 @@ cd busybox-${BUSYBOX_MAJOR}.${BUSYBOX_MINOR}.${BUSYBOX_PATCH} cd .. # Create the bootable image -dd if=/dev/zero of=dist/boot/boot.img bs=1M count=64 +dd if=/dev/zero of=dist/boot/boot.img bs=256M count=64 mkfs.ext4 dist/boot/boot.img mkdir -p dist/mnt sudo mount dist/boot/boot.img dist/mnt