36 lines
945 B
Bash
Executable File
36 lines
945 B
Bash
Executable File
#!/bin/sh
|
|
# live-build configuration script
|
|
# see 'man lb config'
|
|
|
|
lb config noauto \
|
|
--apt-recommends true \
|
|
--apt-source-archives false \
|
|
--apt-indices false \
|
|
--architectures i386 \
|
|
--archive-areas 'main contrib non-free non-free-firmware' \
|
|
--backports false \
|
|
--linux-flavours 686 \
|
|
--security false \
|
|
--updates false \
|
|
--source false \
|
|
--chroot-squashfs-compression-type zstd \
|
|
--binary-images iso-hybrid \
|
|
--checksums sha256 \
|
|
--clean \
|
|
--debconf-frontend noninteractive \
|
|
--debian-installer none \
|
|
--debootstrap-options "--include=apt-transport-https,ca-certificates,openssl" \
|
|
--distribution bookworm \
|
|
--mirror-bootstrap http://ftp.us.debian.org/debian \
|
|
--mirror-chroot http://ftp.us.debian.org/debian \
|
|
--firmware-binary true \
|
|
--firmware-chroot true \
|
|
--initramfs live-boot \
|
|
--iso-publisher Peppermint-Team \
|
|
--iso-volume CLASSIC \
|
|
--linux-packages "linux-image linux-headers" \
|
|
--memtest memtest86+ \
|
|
--win32-loader false
|
|
|
|
"${@}"
|