Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: bundle sfdisk, mkfs.vfat, efibootmgr in initramfs

HD install fails with sfdisk rc=32512 (command not found) because
these disk utilities weren't being copied into the initramfs by
docker-build.sh. The old build-and-flash-initramfs.sh bundled them
but the oven uses docker-build.sh which didn't.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+12
+12
fedac/native/docker-build.sh
··· 272 272 fi 273 273 done 274 274 275 + # ── 2i2: Disk/EFI tools (for HD install + OTA flash) ── 276 + for tool in sfdisk mkfs.vfat efibootmgr; do 277 + SRC_BIN=$(command -v "$tool" 2>/dev/null) 278 + if [ -n "$SRC_BIN" ]; then 279 + cp -L "$SRC_BIN" "$IROOT/bin/" 280 + for dep in $(ldd "$SRC_BIN" 2>/dev/null | grep -oP '/\S+'); do 281 + BASENAME=$(basename "$dep") 282 + [ ! -f "$IROOT/lib64/$BASENAME" ] && cp -L "$(readlink -f "$dep")" "$IROOT/lib64/$BASENAME" 2>/dev/null || true 283 + done 284 + fi 285 + done 286 + 275 287 # ── 2j: Firmware (trimmed to common Intel WiFi + GPU chips) ── 276 288 log " Copying firmware..." 277 289 FWDIR=""