Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

debug: log ldd output before ac-native launch to diagnose link errors

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

+5
+5
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 154 + [ "$USB_MOUNTED" = "1" ] && cp /tmp/ldd.log /mnt/ldd.log 2>/dev/null && sync 150 155 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 151 156 EXIT_CODE=$? 152 157 echo "[init] ac-native exited: code=$EXIT_CODE crash=$CRASH_COUNT" > /dev/tty0 2>/dev/null