29 lines
967 B
Bash
Executable File
29 lines
967 B
Bash
Executable File
#!/bin/sh
|
|
# auto/config — live-build configuration for bee ISO
|
|
# Runs automatically when lb config is called.
|
|
# See: man lb_config
|
|
|
|
set -e
|
|
|
|
. "$(dirname "$0")/../VERSIONS"
|
|
|
|
lb config noauto \
|
|
--distribution bookworm \
|
|
--architectures amd64 \
|
|
--binary-images iso-hybrid \
|
|
--bootloaders "grub-efi,syslinux" \
|
|
--debian-installer none \
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
|
--mirror-bootstrap "https://deb.debian.org/debian" \
|
|
--mirror-chroot "https://deb.debian.org/debian" \
|
|
--mirror-binary "https://deb.debian.org/debian" \
|
|
--security true \
|
|
--linux-flavours "amd64" \
|
|
--linux-packages "linux-image-${DEBIAN_KERNEL_ABI}" \
|
|
--memtest none \
|
|
--iso-volume "BEE" \
|
|
--iso-application "Bee Hardware Audit" \
|
|
--bootappend-live "boot=live components console=tty0 console=ttyS0,115200n8 username=bee user-fullname=Bee modprobe.blacklist=nouveau" \
|
|
--apt-recommends false \
|
|
"${@}"
|