25 lines
909 B
Bash
Executable File
25 lines
909 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
lb config noauto \
|
|
--bootloaders "syslinux,grub-efi" \
|
|
--distribution "bookworm" \
|
|
--architectures "amd64" \
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
|
--apt-recommends "true" \
|
|
--debian-installer-gui "true" \
|
|
--debian-installer "live" \
|
|
--bootappend-live "lang=fr_FR.UTF-8 locales=fr_FR.UTF-8 keyboard-layouts=fr splash timezone=Europe/Paris utc=yes keyboard-model=pc105 hostname=svprognu boot=live persistence components username=svpro_gnu" \
|
|
--bootappend-install "locales=fr_FR.UTF-8" \
|
|
--binary-images "iso-hybrid" \
|
|
--uefi-secure-boot "enable" \
|
|
--linux-flavours "amd64" \
|
|
--linux-packages "linux-image linux-headers" \
|
|
--iso-volume "SVPROGNU-12" \
|
|
--iso-application "SVPROGNU-12" \
|
|
--backports "false" \
|
|
--updates "true" \
|
|
--security "true" \
|
|
"${@}"
|