Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: always show W install prompt when booting from USB

Previously, when log_dev wasn't set at boot time, the fallback
hid the install option if an internal install was detected.
Now always offers install/update when booting as init (PID 1).

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

+3 -3
+3 -3
fedac/native/src/ac-native.c
··· 1313 1313 ac_log("[boot-anim] boot_dev=%s parent=%s removable=%d show_install=%d\n", 1314 1314 log_dev, boot_blk, is_removable(boot_blk), show_install); 1315 1315 } else if (getpid() == 1) { 1316 - // No log_dev — fallback: show if not installed 1317 - show_install = !is_installed_on_hd(); 1318 - ac_log("[boot-anim] no log_dev, show_install=%d (fallback)\n", show_install); 1316 + // No log_dev yet — always show install option (user can update or fresh install) 1317 + show_install = 1; 1318 + ac_log("[boot-anim] no log_dev, show_install=1 (always offer)\n"); 1319 1319 } 1320 1320 1321 1321 // Open evdev fds once for key checking (avoid per-frame open/close)