1b81ad4914
mkarchiso reuses completed stages in the work dir -> a 'too short' build that ships a stale airootfs. bootstrap now 'rm -rf' the work dir first. Also switch profiledef bootmodes to the non-deprecated names (bios.syslinux, uefi.systemd-boot). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 lines
273 B
Bash
6 lines
273 B
Bash
# Live ISO: auto-launch the TANINUX installer on the first console.
|
|
# (Removed from the installed target by Calamares' shellprocess-striplive.)
|
|
if [[ "$(tty)" == /dev/tty1 ]] && [[ -z "$WAYLAND_DISPLAY" ]] && ! pgrep -x cage >/dev/null 2>&1; then
|
|
exec tanin-installer
|
|
fi
|