Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: add missing busybox symlinks to local initramfs build

Local build was missing mount, sleep, sync, tr, cat, mkdir and other
essential busybox symlinks. Match the full symlink list from docker-build.sh.

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

+6 -4
+6 -4
fedac/native/scripts/build-and-flash-initramfs.sh
··· 537 537 # Busybox applet symlinks — covers find, cp, mv, rm, ln, wc, tail, sort, 538 538 # uniq, tr, tee, xargs, diff, stat, ps, tar, gzip, touch, env, basename, 539 539 # dirname, expr, test, printf, date, dd, df, du, echo, true, false, etc. 540 - for cmd in find cp mv rm ln wc tail sort uniq tr tee xargs diff stat ps \ 541 - tar gzip gunzip touch env basename dirname expr test printf \ 542 - date dd df du echo true false readlink mktemp vi hostname \ 543 - id whoami chown rmdir realpath seq yes nohup md5sum sha256sum; do 540 + for cmd in sh sleep mkdir mount umount cat cp mv rm ln chmod chown \ 541 + date dd find grep head kill ps sed sort tail tee test touch tr wc which \ 542 + mktemp printf seq stat basename dirname env expr true false readlink \ 543 + realpath rmdir uniq yes tar gzip gunzip hostname id ip modprobe \ 544 + mkswap swapon vi df du diff xargs nohup pgrep killall cut whoami awk \ 545 + sync poweroff reboot halt mknod udhcpc md5sum sha256sum; do 544 546 ln -sf busybox "${INITRAMFS_DIR}/bin/${cmd}" 2>/dev/null || true 545 547 done 546 548 log " busybox: $(du -sh "${INITRAMFS_DIR}/bin/busybox" | cut -f1) ($(ls "${INITRAMFS_DIR}/bin/" | wc -l) symlinks)"