boot straight into the installer from the live ISO

This commit is contained in:
Astral
2026-09-01 08:38:22 +02:00
parent 6b65014d64
commit 535ccc1ffc
3 changed files with 73 additions and 5 deletions
+5 -1
View File
@@ -7,7 +7,7 @@ SHELL := sh
KAMA ?= ../kama
PKGS ?= ../kama-packages
.PHONY: rootfs install recipe-check clean
.PHONY: rootfs install live-init recipe-check clean
rootfs:
sh scripts/build-root.sh
@@ -15,6 +15,10 @@ rootfs:
install:
sh installer/install.sh
# syntax-check the live init (what boots you into the installer)
live-init:
sh -n live/init && echo "OK live/init"
recipe-check:
@for f in $(PKGS)/*.sh; do \
sh -n "$$f" && echo "OK $$f" || echo "FAIL $$f"; \