This commit is contained in:
Samuel Vermeulen 2022-11-18 15:34:27 +01:00
parent 2a0134b5c8
commit 8cd1baf6f2
7 changed files with 161 additions and 250 deletions

View File

@ -20,5 +20,5 @@ lb config noauto \
--iso-application "SVPROGNU-11" \ --iso-application "SVPROGNU-11" \
--backports "false" \ --backports "false" \
--updates "true" \ --updates "true" \
--security "false" \ --security "true" \
"${@}" "${@}"

View File

@ -1,170 +1,107 @@
# config/binary - options for live-build(7), binary stage # config/binary - options for live-build(7), binary stage
# $LB_BINARY_FILESYSTEM: set image filesystem # Set image type
# (Default: fat32) LB_IMAGE_TYPE="iso-hybrid"
# Set image filesystem
LB_BINARY_FILESYSTEM="fat32" LB_BINARY_FILESYSTEM="fat32"
# $LB_APT_INDICES: set apt/aptitude generic indices # Set apt/aptitude generic indices
# (Default: true)
LB_APT_INDICES="true" LB_APT_INDICES="true"
# $LB_BOOTAPPEND_LIVE: set boot parameters # Set boot parameters
# (Default: empty)
LB_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" LB_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"
# $LB_BOOTAPPEND_INSTALL: set boot parameters # Set boot parameters
# (Default: empty)
LB_BOOTAPPEND_INSTALL="locales=fr_FR.UTF-8" LB_BOOTAPPEND_INSTALL="locales=fr_FR.UTF-8"
# $LB_BOOTAPPEND_LIVE_FAILSAFE: set boot parameters # Set boot parameters
# (Default: empty) LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788"
LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal"
# $LB_BOOTLOADERS: set bootloaders # Set BIOS bootloader
# (Default: syslinux,grub-efi) LB_BOOTLOADER_BIOS="syslinux"
LB_BOOTLOADERS="syslinux,grub-efi"
# $LB_CHECKSUMS: set checksums # Set EFI bootloader
# (Default: md5) LB_BOOTLOADER_EFI="grub-efi"
LB_CHECKSUMS="md5"
# $LB_COMPRESSION: set compression # Set checksums
# (Default: none) LB_CHECKSUMS="sha256 md5"
# Set compression
LB_COMPRESSION="none" LB_COMPRESSION="none"
# $LB_ZSYNC: set zsync # Set zsync
# (Default: true)
LB_ZSYNC="true" LB_ZSYNC="true"
# ${LB_BUILD_WITH_CHROOT: control if we build binary images chrooted # Control if we build binary images chrooted
# (Default: true) # NEVER, *EVER*, *E*V*E*R* SET THIS OPTION to false.
# DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false.
LB_BUILD_WITH_CHROOT="true" LB_BUILD_WITH_CHROOT="true"
# $LB_DEBIAN_INSTALLER: set debian-installer # Set debian-installer
# (Default: live)
LB_DEBIAN_INSTALLER="live" LB_DEBIAN_INSTALLER="live"
# $LB_DEBIAN_INSTALLER_DISTRIBUTION: set debian-installer suite # Set debian-installer suite
# (Default: empty)
LB_DEBIAN_INSTALLER_DISTRIBUTION="bullseye" LB_DEBIAN_INSTALLER_DISTRIBUTION="bullseye"
# $LB_DEBIAN_INSTALLER_PRESEEDFILE: set debian-installer preseed filename/url # Set debian-installer preseed filename/url
# (Default: )
LB_DEBIAN_INSTALLER_PRESEEDFILE="" LB_DEBIAN_INSTALLER_PRESEEDFILE=""
# $LB_DEBIAN_INSTALLER_GUI: toggle use of GUI debian-installer # Toggle use of GUI debian-installer
# (Default: true)
LB_DEBIAN_INSTALLER_GUI="true" LB_DEBIAN_INSTALLER_GUI="true"
# $LB_GRUB_SPLASH: set custom grub splash # Set hdd label
# (Default: empty)
LB_GRUB_SPLASH=""
# $LB_HDD_LABEL: set hdd label
# (Default: DEBIAN_LIVE)
LB_HDD_LABEL="DEBIAN_LIVE" LB_HDD_LABEL="DEBIAN_LIVE"
# $LB_HDD_SIZE: set hdd filesystem size # Set hdd filesystem size
# (Default: auto)
LB_HDD_SIZE="auto" LB_HDD_SIZE="auto"
# $LB_HDD_PARTITION_START: set start of partition for the hdd target for BIOSes that expect a specific boot partition start (e.g. "63s"). If empty, use optimal layout. # Set start of partition for the hdd target for BIOSes that expect a specific boot partition start (e.g. "63s"). If empty, use optimal layout.
# (Default: )
LB_HDD_PARTITION_START="" LB_HDD_PARTITION_START=""
# $LB_ISO_APPLICATION: set iso author # Set iso author
# (Default: SVPROGNU-11)
LB_ISO_APPLICATION="SVPROGNU-11" LB_ISO_APPLICATION="SVPROGNU-11"
# $LB_ISO_PREPARER: set iso preparer # Set iso preparer
# (Default: live-build 1:20190311; https://debian-live.alioth.debian.org/live-build) LB_ISO_PREPARER="live-build @LB_VERSION@; https://salsa.debian.org/live-team/live-build"
LB_ISO_PREPARER="live-build 1:20190311; https://debian-live.alioth.debian.org/live-build"
# $LB_ISO_PUBLISHER: set iso publisher # Set iso publisher
# (Default: Live Systems project; https://debian-live.alioth.debian.org/; debian-live@lists.debian.org) LB_ISO_PUBLISHER="Debian Live project; https://wiki.debian.org/DebianLive; debian-live@lists.debian.org"
LB_ISO_PUBLISHER="Live Systems project; https://debian-live.alioth.debian.org/; debian-live@lists.debian.org"
# $LB_ISO_VOLUME: set iso volume (max 32 chars) # Set iso volume (max 32 chars)
# (Default: SVPROGNU-11)
LB_ISO_VOLUME="SVPROGNU-11" LB_ISO_VOLUME="SVPROGNU-11"
# $LB_JFFS2_ERASEBLOCK: set jffs2 eraseblock size # Set jffs2 eraseblock size
# (Default: unset)
LB_JFFS2_ERASEBLOCK="" LB_JFFS2_ERASEBLOCK=""
# $LB_MEMTEST: set memtest # Set memtest
# (Default: none)
LB_MEMTEST="none" LB_MEMTEST="none"
# $LB_LOADLIN: set loadlin # Set loadlin
# (Default: true)
LB_LOADLIN="true" LB_LOADLIN="true"
# $LB_WIN32_LOADER: set win32-loader # Set win32-loader
# (Default: true)
LB_WIN32_LOADER="true" LB_WIN32_LOADER="true"
# $LB_NET_ROOT_FILESYSTEM: set netboot filesystem # Set net tarball
# (Default: nfs)
LB_NET_ROOT_FILESYSTEM="nfs"
# $LB_NET_ROOT_MOUNTOPTIONS: set nfsopts
# (Default: empty)
LB_NET_ROOT_MOUNTOPTIONS=""
# $LB_NET_ROOT_PATH: set netboot server directory
# (Default: /srv/debian-live)
LB_NET_ROOT_PATH="/srv/debian-live"
# $LB_NET_ROOT_SERVER: set netboot server address
# (Default: 192.168.1.1)
LB_NET_ROOT_SERVER="192.168.1.1"
# $LB_NET_COW_FILESYSTEM: set net client cow filesystem
# (Default: nfs)
LB_NET_COW_FILESYSTEM="nfs"
# $LB_NET_COW_MOUNTOPTIONS: set cow mount options
# (Default: empty)
LB_NET_COW_MOUNTOPTIONS=""
# $LB_NET_COW_PATH: set cow directory
# (Default: )
LB_NET_COW_PATH=""
# $LB_NET_COW_SERVER: set cow server
# (Default: )
LB_NET_COW_SERVER=""
# $LB_NET_TARBALL: set net tarball
# (Default: true)
LB_NET_TARBALL="true" LB_NET_TARBALL="true"
# $LB_ONIE: set onie # Set onie
# (Default: false)
LB_ONIE="false" LB_ONIE="false"
# $LB_ONIE_KERNEL_CMDLINE: set onie additional kernel cmdline options # Set onie additional kernel cmdline options
# (Default: )
LB_ONIE_KERNEL_CMDLINE="" LB_ONIE_KERNEL_CMDLINE=""
# $LB_FIRMWARE_BINARY: include firmware packages in debian-installer # Set inclusion of firmware packages in debian-installer
# (Default: true)
LB_FIRMWARE_BINARY="true" LB_FIRMWARE_BINARY="true"
# $LB_FIRMWARE_CHROOT: include firmware packages in debian-installer # Set inclusion of firmware packages in the live image
# (Default: true)
LB_FIRMWARE_CHROOT="true" LB_FIRMWARE_CHROOT="true"
# $LB_SWAP_FILE_PATH: set swap file path # Set swap file path
# (Default: )
LB_SWAP_FILE_PATH="" LB_SWAP_FILE_PATH=""
# $LB_SWAP_FILE_SIZE: set swap file size # Set swap file size
# (Default: 512)
LB_SWAP_FILE_SIZE="512" LB_SWAP_FILE_SIZE="512"
# $LB_UEFI_SECURE_BOOT: enable/disable UEFI secure boot # Enable/disable UEFI secure boot support
# (Default: enable)
LB_UEFI_SECURE_BOOT="enable" LB_UEFI_SECURE_BOOT="enable"

View File

@ -1,73 +1,76 @@
# config/bootstrap - options for live-build(7), bootstrap stage # config/bootstrap - options for live-build(7), bootstrap stage
# $LB_DISTRIBUTION: select distribution to use # Select architecture to use
# (Default: bullseye) LB_ARCHITECTURE="amd64"
# Select distribution to use
LB_DISTRIBUTION="bullseye" LB_DISTRIBUTION="bullseye"
# $LB_PARENT_DISTRIBUTION: select parent distribution to use # Select parent distribution to use
# (Default: bullseye) LB_PARENT_DISTRIBUTION=""
LB_PARENT_DISTRIBUTION="bullseye"
# $LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION: select parent distribution for debian-installer to use # Select distribution to use in the chroot
# (Default: bullseye) LB_DISTRIBUTION_CHROOT="bullseye"
# Select parent distribution to use in the chroot
LB_PARENT_DISTRIBUTION_CHROOT="bullseye"
# Select distribution to use in the final image
LB_DISTRIBUTION_BINARY="bullseye"
# Select parent distribution to use in the final image
LB_PARENT_DISTRIBUTION_BINARY="bullseye"
# Select parent distribution for debian-installer to use
LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="bullseye" LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="bullseye"
# $LB_PARENT_MIRROR_BOOTSTRAP: set parent mirror to bootstrap from # Select archive areas to use
# (Default: http://deb.debian.org/debian/) LB_ARCHIVE_AREAS="main contrib non-free"
# Select parent archive areas to use
LB_PARENT_ARCHIVE_AREAS="main contrib non-free"
# Set parent mirror to bootstrap from
LB_PARENT_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/" LB_PARENT_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/"
# $LB_PARENT_MIRROR_CHROOT: set parent mirror to fetch packages from # Set parent mirror to fetch packages from
# (Default: http://deb.debian.org/debian/)
LB_PARENT_MIRROR_CHROOT="http://deb.debian.org/debian/" LB_PARENT_MIRROR_CHROOT="http://deb.debian.org/debian/"
# $LB_PARENT_MIRROR_CHROOT_SECURITY: set security parent mirror to fetch packages from # Set security parent mirror to fetch packages from
# (Default: http://security.debian.org/)
LB_PARENT_MIRROR_CHROOT_SECURITY="http://security.debian.org/" LB_PARENT_MIRROR_CHROOT_SECURITY="http://security.debian.org/"
# $LB_PARENT_MIRROR_BINARY: set parent mirror which ends up in the image # Set parent mirror which ends up in the image
# (Default: http://deb.debian.org/debian/)
LB_PARENT_MIRROR_BINARY="http://deb.debian.org/debian/" LB_PARENT_MIRROR_BINARY="http://deb.debian.org/debian/"
# $LB_PARENT_MIRROR_BINARY_SECURITY: set security parent mirror which ends up in the image # Set security parent mirror which ends up in the image
# (Default: http://security.debian.org/)
LB_PARENT_MIRROR_BINARY_SECURITY="http://security.debian.org/" LB_PARENT_MIRROR_BINARY_SECURITY="http://security.debian.org/"
# $LB_PARENT_MIRROR_DEBIAN_INSTALLER: set debian-installer parent mirror # Set debian-installer parent mirror
# (Default: http://deb.debian.org/debian/)
LB_PARENT_MIRROR_DEBIAN_INSTALLER="http://deb.debian.org/debian/" LB_PARENT_MIRROR_DEBIAN_INSTALLER="http://deb.debian.org/debian/"
# $LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from # Set mirror to bootstrap from
# (Default: http://deb.debian.org/debian/)
LB_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/" LB_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/"
# $LB_MIRROR_CHROOT: set mirror to fetch packages from # Set mirror to fetch packages from
# (Default: http://deb.debian.org/debian/)
LB_MIRROR_CHROOT="http://deb.debian.org/debian/" LB_MIRROR_CHROOT="http://deb.debian.org/debian/"
# $LB_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from # Set security mirror to fetch packages from
# (Default: http://security.debian.org/)
LB_MIRROR_CHROOT_SECURITY="http://security.debian.org/" LB_MIRROR_CHROOT_SECURITY="http://security.debian.org/"
# $LB_MIRROR_BINARY: set mirror which ends up in the image # Set mirror which ends up in the image
# (Default: http://deb.debian.org/debian/)
LB_MIRROR_BINARY="http://deb.debian.org/debian/" LB_MIRROR_BINARY="http://deb.debian.org/debian/"
# $LB_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image # Set security mirror which ends up in the image
# (Default: http://security.debian.org/)
LB_MIRROR_BINARY_SECURITY="http://security.debian.org/" LB_MIRROR_BINARY_SECURITY="http://security.debian.org/"
# $LB_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror # Set debian-installer mirror
# (Default: http://deb.debian.org/debian/)
LB_MIRROR_DEBIAN_INSTALLER="http://deb.debian.org/debian/" LB_MIRROR_DEBIAN_INSTALLER="http://deb.debian.org/debian/"
# $LB_BOOTSTRAP_QEMU_ARCHITECTURES: architectures to use foreign bootstrap # Set architectures to use foreign bootstrap
# (Default: ) LB_BOOTSTRAP_QEMU_ARCHITECTURE=""
LB_BOOTSTRAP_QEMU_ARCHITECTURES=""
# $LB_BOOTSTRAP_QEMU_EXCLUDE: packages to exclude during foreign bootstrap # Set packages to exclude during foreign bootstrap
# (Default: )
LB_BOOTSTRAP_QEMU_EXCLUDE="" LB_BOOTSTRAP_QEMU_EXCLUDE=""
# $LB_BOOTSTRAP_QEMU_STATIC: static qemu binary for foreign bootstrap # Set static qemu binary for foreign bootstrap
# (Default: )
LB_BOOTSTRAP_QEMU_STATIC="" LB_BOOTSTRAP_QEMU_STATIC=""

View File

@ -1,10 +0,0 @@
[Image]
Architecture: amd64
Archive-Areas: main contrib non-free
Distribution: bullseye
Mirror-Bootstrap: http://deb.debian.org/debian/
[FIXME]
Configuration-Version: 1:20190311
Name: live-image
Type: iso-hybrid

View File

@ -1,37 +1,34 @@
# config/chroot - options for live-build(7), chroot stage # config/chroot - options for live-build(7), chroot stage
# $LB_CHROOT_FILESYSTEM: set chroot filesystem # Set chroot filesystem
# (Default: squashfs)
LB_CHROOT_FILESYSTEM="squashfs" LB_CHROOT_FILESYSTEM="squashfs"
# $LB_UNION_FILESYSTEM: set union filesystem # Set chroot squashfs compression level
# (Default: overlay) LB_CHROOT_SQUASHFS_COMPRESSION_LEVEL=""
# Set chroot squashfs compression type
LB_CHROOT_SQUASHFS_COMPRESSION_TYPE=""
# Set union filesystem
LB_UNION_FILESYSTEM="overlay" LB_UNION_FILESYSTEM="overlay"
# $LB_INTERACTIVE: set interactive build # Set interactive build
# (Default: false)
LB_INTERACTIVE="false" LB_INTERACTIVE="false"
# $LB_KEYRING_PACKAGES: set keyring packages # Set keyring packages
# (Default: empty)
LB_KEYRING_PACKAGES="debian-archive-keyring" LB_KEYRING_PACKAGES="debian-archive-keyring"
# $LB_LINUX_FLAVOURS: set kernel flavour to use # Set kernel flavour to use (with arch)
# (Default: autodetected) LB_LINUX_FLAVOURS_WITH_ARCH="amd64"
LB_LINUX_FLAVOURS="amd64"
# $LB_LINUX_PACKAGES: set kernel packages to use # Set kernel packages to use
# (Default: autodetected)
LB_LINUX_PACKAGES="linux-image linux-headers" LB_LINUX_PACKAGES="linux-image linux-headers"
# $LB_SECURITY: enable security updates # Enable security updates
# (Default: false) LB_SECURITY="true"
LB_SECURITY="false"
# $LB_UPDATES: enable updates updates # Enable updates updates
# (Default: true)
LB_UPDATES="true" LB_UPDATES="true"
# $LB_BACKPORTS: enable backports updates # Enable backports updates
# (Default: false)
LB_BACKPORTS="false" LB_BACKPORTS="false"

View File

@ -1,119 +1,105 @@
# config/common - common options for live-build(7) # config/common - common options for live-build(7)
# $LB_APT: set package manager # Version of live-build used to build config (config format version)
# (Default: apt) LB_CONFIGURATION_VERSION="20210407"
# Set package manager
LB_APT="apt" LB_APT="apt"
# $LB_APT_FTP_PROXY: set apt/aptitude ftp proxy # Set apt/aptitude/debootstrap ftp proxy
# (Default: autodetected or empty)
LB_APT_FTP_PROXY="" LB_APT_FTP_PROXY=""
# $LB_APT_HTTP_PROXY: set apt/aptitude http proxy # Set apt/aptitude/debootstrap http proxy
# (Default: autodetected or empty)
LB_APT_HTTP_PROXY="" LB_APT_HTTP_PROXY=""
# $LB_APT_PIPELINE: set apt/aptitude pipeline depth # Set apt/aptitude pipeline depth
# (Default: )
LB_APT_PIPELINE="" LB_APT_PIPELINE=""
# $LB_APT_RECOMMENDS: set apt/aptitude recommends # Set apt/aptitude recommends
# (Default: true)
LB_APT_RECOMMENDS="true" LB_APT_RECOMMENDS="true"
# $LB_APT_SECURE: set apt/aptitude security # Set apt/aptitude security
# (Default: true)
LB_APT_SECURE="true" LB_APT_SECURE="true"
# $LB_APT_SOURCE_ARCHIVES: set apt/aptitude source entries in sources.list # Set apt/aptitude source entries in sources.list
# (Default: true)
LB_APT_SOURCE_ARCHIVES="true" LB_APT_SOURCE_ARCHIVES="true"
# $LB_CACHE: control cache # Control cache
# (Default: true)
LB_CACHE="true" LB_CACHE="true"
# $LB_CACHE_INDICES: control if downloaded package indices should be cached # Control if downloaded package indices should be cached
# (Default: false)
LB_CACHE_INDICES="false" LB_CACHE_INDICES="false"
# $LB_CACHE_PACKAGES: control if downloaded packages files should be cached # Control if downloaded packages files should be cached
# (Default: true)
LB_CACHE_PACKAGES="true" LB_CACHE_PACKAGES="true"
# $LB_CACHE_STAGES: control if completed stages should be cached # Control if completed stages should be cached
# (Default: bootstrap)
LB_CACHE_STAGES="bootstrap" LB_CACHE_STAGES="bootstrap"
# $LB_DEBCONF_FRONTEND: set debconf(1) frontend to use # Set debconf(1) frontend to use
# (Default: noninteractive)
LB_DEBCONF_FRONTEND="noninteractive" LB_DEBCONF_FRONTEND="noninteractive"
# $LB_DEBCONF_PRIORITY: set debconf(1) priority to use # Set debconf(1) priority to use
# (Default: critical)
LB_DEBCONF_PRIORITY="critical" LB_DEBCONF_PRIORITY="critical"
# $LB_INITRAMFS: set initramfs hook # Set initramfs hook
# (Default: live-boot)
LB_INITRAMFS="live-boot" LB_INITRAMFS="live-boot"
# $LB_INITRAMFS_COMPRESSION: set initramfs compression # Set initramfs compression
# (Default: gzip)
LB_INITRAMFS_COMPRESSION="gzip" LB_INITRAMFS_COMPRESSION="gzip"
# $LB_INITSYSTEM: set init system # Set init system
# (Default: systemd)
LB_INITSYSTEM="systemd" LB_INITSYSTEM="systemd"
# $LB_FDISK: set fdisk program # Set distribution mode
# (Default: autodetected)
LB_FDISK="fdisk"
# $LB_LOSETUP: set losetup program
# (Default: autodetected)
LB_LOSETUP="losetup"
# $LB_MODE: set distribution mode
# (Default: debian)
LB_MODE="debian" LB_MODE="debian"
# $LB_SYSTEM: set system type # Set system type
# (Default: live)
LB_SYSTEM="live" LB_SYSTEM="live"
# $LB_TASKSEL: set tasksel program # Set base name of the image
# (Default: apt) LB_IMAGE_NAME="live-image"
LB_TASKSEL="apt"
# Set options to use with apt
APT_OPTIONS="--yes -o Acquire::Retries=5"
# Set options to use with aptitude
APTITUDE_OPTIONS="--assume-yes -o Acquire::Retries=5"
# Set options to use with debootstrap
DEBOOTSTRAP_OPTIONS=""
# Set script to use with debootstrap
DEBOOTSTRAP_SCRIPT=""
# Set options to use with gzip
GZIP_OPTIONS="-6 --rsyncable"
# Enable UTC timestamps
LB_UTC_TIME="false"
# live-build options # live-build options
# $_BREAKPOINTS: enable breakpoints # Enable breakpoints
# (Default: false) # If set here, overrides the command line option
#_BREAKPOINTS="false" #_BREAKPOINTS="false"
# $_DEBUG: enable debug # Enable debug
# (Default: false) # If set here, overrides the command line option
#_DEBUG="false" #_DEBUG="false"
# $_COLOR: enable color # Enable color
# (Default: false) # If set here, overrides the command line option
#_COLOR="false" #_COLOR="auto"
# $_FORCE: enable force # Enable force
# (Default: false) # If set here, overrides the command line option
#_FORCE="false" #_FORCE="false"
# $_QUIET: enable quiet # Enable quiet
# (Default: false) # If set here, overrides the command line option
_QUIET="false" #_QUIET="false"
# $_VERBOSE: enable verbose # Enable verbose
# (Default: false) # If set here, overrides the command line option
#_VERBOSE="false" #_VERBOSE="false"
# Internal stuff (FIXME)
APT_OPTIONS="--yes"
APTITUDE_OPTIONS="--assume-yes"
DEBOOTSTRAP_OPTIONS=""
DEBOOTSTRAP_SCRIPT=""
GZIP_OPTIONS="-6 --rsyncable"
ISOHYBRID_OPTIONS=""

View File

@ -1,9 +1,7 @@
# config/source - options for live-build(7), source stage # config/source - options for live-build(7), source stage
# $LB_SOURCE: set source option # Set source option
# (Default: false)
LB_SOURCE="false" LB_SOURCE="false"
# $LB_SOURCE_IMAGES: set image type # Set image type
# (Default: tar)
LB_SOURCE_IMAGES="tar" LB_SOURCE_IMAGES="tar"