v0.0.1 - Reorganize ISO build tree, add docs/plans/scripts, and stage Phase 2 Slice B+C service integration artifacts
20 lines
573 B
Bash
Executable File
20 lines
573 B
Bash
Executable File
#!/bin/sh
|
|
# iso/auto/config — run by `lb config` inside iso/
|
|
set -e
|
|
|
|
lb config noauto \
|
|
--mode debian \
|
|
--distribution bookworm \
|
|
--architectures amd64 \
|
|
--binary-images iso-hybrid \
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
|
--apt-indices false \
|
|
--apt-recommends true \
|
|
--apt-secure false \
|
|
--memtest none \
|
|
--iso-application "n-OS-tr" \
|
|
--iso-volume "n-OS-tr" \
|
|
--iso-publisher "n-OS-tr project" \
|
|
--bootappend-live "boot=live components console=tty0 console=ttyS0,115200n8 loglevel=4" \
|
|
"${@}"
|