30 lines
719 B
Bash
Executable File
30 lines
719 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
lb config noauto \
|
|
--mode "debian" \
|
|
--system "live" \
|
|
--distribution "stable" \
|
|
--architecture "amd64" \
|
|
--archive-areas "main contrib non-free" \
|
|
--security "true" \
|
|
--updates "true" \
|
|
--backports "true" \
|
|
--apt-indices "true" \
|
|
--apt-recommends "true" \
|
|
--apt-secure "true" \
|
|
--apt-source-archives "false" \
|
|
--binary-images "iso-hybrid" \
|
|
--bootloaders "syslinux grub-efi" \
|
|
--linux-package "linux-image linux-headers" \
|
|
--debian-installer "live" \
|
|
--debian-installer-distribution "stable" \
|
|
--debian-installer-gui "true" \
|
|
--firmware-binary "true" \
|
|
--firmware-chroot "true" \
|
|
--memtest "none" \
|
|
--win32-loader "false" \
|
|
"${@}"
|
|
|