From 0b0101f2c2e9f81badc300f06807091fa7e59386 Mon Sep 17 00:00:00 2001 From: Matt C Date: Sat, 4 Dec 2021 21:21:20 -0500 Subject: [PATCH] moving fdisk to parted --- README.md | 1 + build.sh | 12 +++--------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c01f333..ba2c3b0 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Ikeda is a WIP BusyBox and musl-libc based Linux System - `qemu` - `wget` - `openssl` +- `gparted` or `parted` ? ## Build Dependencies (for void or arch) - `base-devel` diff --git a/build.sh b/build.sh index e3565e6..61f5625 100755 --- a/build.sh +++ b/build.sh @@ -186,7 +186,7 @@ image() { buildbusybox buildbash musl - sg + #sg printsection "Making final image" @@ -200,14 +200,8 @@ image() { echo "Making Ikeda Linux image" fallocate -l1500M ikeda - ( - echo "n" - echo - echo - echo - echo - echo "w" - ) | fdisk ikeda + parted ikeda mklabel dos --script + parted ikeda mkpart ext4 0 100% --script sudo ./as_root.sh