diff options
| author | Alexander Hill <ahill@breadpudding.dev> | 2025-07-23 21:02:07 -0400 |
|---|---|---|
| committer | Alexander Hill <ahill@breadpudding.dev> | 2025-07-23 21:02:07 -0400 |
| commit | 82d185aee282c0ca4054cfeeabba6dc38869ba40 (patch) | |
| tree | 1b87c1c7a4c3fa29f4171d79d96fbde7d4e6de95 /build-image.sh | |
| parent | 0ff496ab2d887977c03a477bfa34744f6bf6f0e9 (diff) | |
Deprecated sbin and applied CFLAGS to LLVM's first stage
/sbin is now symlinked to /bin for compatibility's sake
Diffstat (limited to 'build-image.sh')
| -rwxr-xr-x | build-image.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/build-image.sh b/build-image.sh deleted file mode 100755 index ed26655..0000000 --- a/build-image.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -e -dd if=/dev/zero of=maple.img bs=1G count=16 -# TODO: Replace parted with sfdisk to reduce the number of dependencies required -# to build Maple Linux. ~ahill -parted --script maple.img \ - mklabel gpt \ - mkpart fat32 0% 512M \ - mkpart xfs 512M 100% \ - set 1 esp on -# FIXME: If we adjust the partition table above, these numbers are no longer -# accurate. Is there a way to automate this process in a rootless -# fashion? ~ahill -# FIXME: This process also gets slower with larger images. Is there a way to -# treat a specific offset and length of a file as its own file handle? -# ~ahill -dd if=/dev/zero of=maple.img1 count=997375 -mkfs.fat -F32 maple.img1 -dd if=maple.img1 of=maple.img seek=2048 conv=notrunc -rm maple.img1 -dd if=/dev/zero of=maple.img2 count=31457280 -mkfs.xfs maple.img2 -dd if=maple.img2 of=maple.img seek=999424 conv=notrunc -rm maple.img2
\ No newline at end of file |
