Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: use ld-linux --list instead of ldd (not in busybox)

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

+2 -4
+2 -4
fedac/native/initramfs/init
··· 147 147 # Main loop — restart on crash, poweroff on exit 0, reboot on exit 2 148 148 CRASH_COUNT=0 149 149 while true; do 150 - # Log shared lib deps before launch 151 - echo "[init] ldd ac-native:" > /dev/tty0 2>/dev/null 152 - LD_LIBRARY_PATH="/lib64" ldd /ac-native > /tmp/ldd.log 2>&1 || true 153 - cat /tmp/ldd.log > /dev/tty0 2>/dev/null 150 + # Log shared lib deps before launch (no ldd in busybox, use ld-linux directly) 151 + LD_LIBRARY_PATH="/lib64" /lib64/ld-linux-x86-64.so.2 --list /ac-native > /tmp/ldd.log 2>&1 || true 154 152 [ "$USB_MOUNTED" = "1" ] && cp /tmp/ldd.log /mnt/ldd.log 2>/dev/null && sync 155 153 LD_LIBRARY_PATH="/lib64" LIBGL_DRIVERS_PATH="/lib64/dri" GBM_DRIVERS_PATH="/lib64/dri" MESA_LOADER_DRIVER_OVERRIDE=iris /ac-native /piece.mjs 2>/tmp/ac-native-stderr.log 156 154 EXIT_CODE=$?