iso/build.sh runs mkarchiso inside a privileged archlinux container, overlays our customizations onto Arch's stock releng profile (systemd unit that launches Flask on 0.0.0.0:5000, the webinstaller under /opt/furtka, extra packages for python/flask/avahi), and drops a hybrid BIOS/UEFI ISO in iso/out/. Verified end to end: Proxmox VM (OVMF, Secure Boot off) boots the ISO, DHCP's onto the LAN, and serves screens 1-3 of the existing wizard at http://<vm-ip>:5000/install/step1. This is the first point at which Furtka is something you can run instead of something you can read about. Two known drive-list bugs surfaced while testing (/dev/loop0 and /dev/sr0 appear as install targets) — captured in the README roadmap. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
340 B
Bash
9 lines
340 B
Bash
#!/usr/bin/env bash
|
|
# Overrides for releng's profiledef.sh — only the fields we want to change.
|
|
# build.sh sources releng's original first, then this file, so these win.
|
|
|
|
iso_name="furtka"
|
|
iso_label="FURTKA_$(date +%Y%m)"
|
|
iso_publisher="Furtka <https://furtka.org>"
|
|
iso_application="Furtka Live Installer"
|
|
iso_version="$(date +%Y.%m.%d)"
|