From 2980169a2741bd5d1620c64b5d6e525771891875 Mon Sep 17 00:00:00 2001 From: Daniel Hammer Date: Sat, 18 Jul 2026 13:08:39 +0200 Subject: [PATCH] fix: stop nesting ramdisk.tar - size improvement The ramdisk build embedded a full second copy of ramdisk.tar at boot/ramdisk.tar inside the ramdisk itself. Nothing consumes it (the Installer copies the live 0:/ tree file-by-file and explicitly skips it), so it was pure dead weight that doubled the image. Build the tar once. Co-Authored-By: Claude Opus 4.8 --- GNUmakefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index aaf96ec..6dc134f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -193,8 +193,6 @@ ramdisk: limine/limine kernel programs cp -v kernel/bin-$(ARCH)/kernel programs/bin/boot/ rm -f programs/bin/boot/ramdisk.tar ./scripts/mkramdisk.sh programs/bin ramdisk.tar - cp -v ramdisk.tar programs/bin/boot/ - ./scripts/mkramdisk.sh programs/bin ramdisk.tar $(IMAGE_NAME).iso: limine/limine kernel ramdisk rm -rf iso_root