initial import
authorstack <stack@inventati.org>
Mon, 11 Feb 2013 20:07:00 +0000 (21:07 +0100)
committerstack <stack@inventati.org>
Mon, 11 Feb 2013 20:07:00 +0000 (21:07 +0100)
30 files changed:
README [new file with mode: 0644]
minimal/auto/build [new file with mode: 0755]
minimal/auto/clean [new file with mode: 0755]
minimal/auto/config [new file with mode: 0755]
minimal/config/archives/experimental.list.chroot [new file with mode: 0644]
minimal/config/archives/sid.pref.chroot [new file with mode: 0644]
minimal/config/archives/wheezy.list.chroot [new file with mode: 0644]
minimal/config/binary [new file with mode: 0644]
minimal/config/bootstrap [new file with mode: 0644]
minimal/config/chroot [new file with mode: 0644]
minimal/config/common [new file with mode: 0644]
minimal/config/package-lists/dkms.list.chroot [new file with mode: 0644]
minimal/config/package-lists/package.list.chroot [new file with mode: 0644]
minimal/config/source [new file with mode: 0644]
xfce-desktop/auto/build [new file with mode: 0755]
xfce-desktop/auto/clean [new file with mode: 0755]
xfce-desktop/auto/config [new file with mode: 0755]
xfce-desktop/config/archives/experimental.list.chroot [new file with mode: 0644]
xfce-desktop/config/archives/sid.pref.chroot [new file with mode: 0644]
xfce-desktop/config/archives/wheezy.list.chroot [new file with mode: 0644]
xfce-desktop/config/binary [new file with mode: 0644]
xfce-desktop/config/bootstrap [new file with mode: 0644]
xfce-desktop/config/chroot [new file with mode: 0644]
xfce-desktop/config/common [new file with mode: 0644]
xfce-desktop/config/package-lists/desktop.list.chroot [new file with mode: 0644]
xfce-desktop/config/package-lists/dkms.list.chroot [new file with mode: 0644]
xfce-desktop/config/package-lists/installer.live.chroot [new file with mode: 0644]
xfce-desktop/config/package-lists/package.list.chroot [new file with mode: 0644]
xfce-desktop/config/package-lists/standard.live.chroot [new file with mode: 0644]
xfce-desktop/config/source [new file with mode: 0644]

diff --git a/README b/README
new file mode 100644 (file)
index 0000000..423560d
--- /dev/null
+++ b/README
@@ -0,0 +1,37 @@
+Debian live with encrypted persistence support
+
+thanks to cgraff , haylo on #debian-live OFTC
+
+use auto scripts to config
+lb config
+lb build
+
+to copy the image on an usb stick do the following
+
+# MAKE THE PARTITION, 
+sudo parted "${devicel}" mkpart primary "${bytes}" "${usb_size}"  
+
+# ENCRYPT THE PARTITION
+sudo cryptsetup --verbose --verify-passphrase luksFormat "${devicel}2"
+
+# OPEN THE ENCRYPTED PARTITION
+sudo cryptsetup luksOpen "${devicel}2" my_usb 
+
+# MAKE A FILESYSTEM ON IT AND LABEL IT "persistence"
+sudo mkfs.ext3 -L persistence /dev/mapper/my_usb
+
+# MAKE A MOUNT POINT
+sudo mkdir -p /mnt/my_usb
+
+# MOUNT THE OPENED ENCYRYPTION PARTITION
+sudo mount /dev/mapper/my_usb /mnt/my_usb/
+
+# MAKE THE PERSISTENCE.CONF FILE
+echo "/ union" > ~/persistence.conf && sudo mv ~/persistence.conf \
+                      /persistence.conf && sudo mv /persistence.conf /mnt/my_usb
+
+# UMOUNT IT
+sudo umount /dev/mapper/my_usb
+
+# CLOSE THE LUKS PARTITION
+sudo cryptsetup luksClose /dev/mapper/my_usb
diff --git a/minimal/auto/build b/minimal/auto/build
new file mode 100755 (executable)
index 0000000..6d559e8
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+lb build noauto "${@}" 2>&1 | tee build.log
diff --git a/minimal/auto/clean b/minimal/auto/clean
new file mode 100755 (executable)
index 0000000..3e24032
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+lb clean noauto "${@}"
+
+rm -f config/binary config/bootstrap config/chroot config/common config/source
+rm -f build.log
diff --git a/minimal/auto/config b/minimal/auto/config
new file mode 100755 (executable)
index 0000000..9d34c73
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+ mirror="http://ftp.debian.org/debian/"  
+ security_mirror="http://ftp.debian.org/debian-security/"  
+ lb config noauto \
+     -a i386 \
+     -b hdd \
+     -d sid \
+     --linux-flavours 486 \
+     --bootstrap cdebootstrap \
+     --cdebootstrap-options "--flavour=minimal" \
+     --bootappend-live "\
+     boot=live \
+     config \
+     persistent=cryptsetup \
+     persistence-encryption=luks \
+     username=stack \
+     hostname=acqua \
+     persistence \
+     live-config.locales=it_IT live-config.timezone=Europe/Rome live-config.keyboard-layouts=it \
+     " \
+     --apt-indices false  --archive-areas "main contrib non-free" \
+     --apt-recommends false \
+     --linux-packages linux-image-3.7-trunk \
+     --mirror-bootstrap "${mirror}" \
+     --mirror-binary "${mirror}" \
+     --mirror-chroot-security "${security_mirror}" \
+     --mirror-binary-security "${security_mirror}" \
+       "${@}"
diff --git a/minimal/config/archives/experimental.list.chroot b/minimal/config/archives/experimental.list.chroot
new file mode 100644 (file)
index 0000000..88aba8e
--- /dev/null
@@ -0,0 +1 @@
+deb http://ftp.debian.org/debian/ experimental main
diff --git a/minimal/config/archives/sid.pref.chroot b/minimal/config/archives/sid.pref.chroot
new file mode 100644 (file)
index 0000000..1e0ade2
--- /dev/null
@@ -0,0 +1,11 @@
+Package: user-setup
+Pin: release n=wheezy
+Pin-Priority: 600
+
+Package: syslinu*
+Pin: release n=wheezy
+Pin-Priority: 600
+
+Package: *
+Pin: release n=experimental
+Pin-Priority: 1
diff --git a/minimal/config/archives/wheezy.list.chroot b/minimal/config/archives/wheezy.list.chroot
new file mode 100644 (file)
index 0000000..7d667ae
--- /dev/null
@@ -0,0 +1 @@
+deb http://ftp.debian.org/debian/ wheezy main
diff --git a/minimal/config/binary b/minimal/config/binary
new file mode 100644 (file)
index 0000000..f8f7393
--- /dev/null
@@ -0,0 +1,158 @@
+# config/binary - options for live-build(7), binary stage
+
+# $LB_BINARY_FILESYSTEM: set image filesystem
+# (Default: fat32)
+LB_BINARY_FILESYSTEM="fat32"
+
+# $LB_BINARY_IMAGES: set image type
+# (Default: hdd)
+LB_BINARY_IMAGES="hdd"
+
+# $LB_APT_INDICES: set apt/aptitude generic indices
+# (Default: false)
+LB_APT_INDICES="false"
+
+# $LB_BOOTAPPEND_LIVE: set boot parameters
+# (Default: empty)
+LB_BOOTAPPEND_LIVE="     boot=live      config      persistent=cryptsetup      persistence-encryption=luks      username=stack      hostname=acqua      persistence      live-config.locales=it_IT live-config.timezone=Europe/Rome live-config.keyboard-layouts=it      "
+
+# $LB_BOOTAPPEND_INSTALL: set boot parameters
+# (Default: empty)
+LB_BOOTAPPEND_INSTALL=""
+
+# $LB_BOOTAPPEND_LIVE_FAILSAFE: set boot parameters
+# (Default: empty)
+LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live config memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal"
+
+# $LB_BOOTLOADER: set bootloader
+# (Default: syslinux)
+LB_BOOTLOADER="syslinux"
+
+# $LB_CHECKSUMS: set checksums
+# (Default: md5)
+LB_CHECKSUMS="md5"
+
+# $LB_COMPRESSION: set compression
+# (Default: none)
+LB_COMPRESSION="none"
+
+# $LB_ZSYNC: set zsync
+# (Default: true)
+LB_ZSYNC="true"
+
+# ${LB_BUILD_WITH_CHROOT: control if we build binary images chrooted
+# (Default: true)
+# DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false.
+LB_BUILD_WITH_CHROOT="true"
+
+# $LB_DEBIAN_INSTALLER: set debian-installer
+# (Default: false)
+LB_DEBIAN_INSTALLER="false"
+
+# $LB_DEBIAN_INSTALLER_DISTRIBUTION: set debian-installer suite
+# (Default: empty)
+LB_DEBIAN_INSTALLER_DISTRIBUTION="sid"
+
+# $LB_DEBIAN_INSTALLER_PRESEEDFILE: set debian-installer preseed filename/url
+# (Default: )
+LB_DEBIAN_INSTALLER_PRESEEDFILE=""
+
+# $LB_DEBIAN_INSTALLER_GUI: toggle use of GUI debian-installer
+# (Default: true)
+LB_DEBIAN_INSTALLER_GUI="true"
+
+# $LB_GRUB_SPLASH: set custom grub splash
+# (Default: empty)
+LB_GRUB_SPLASH=""
+
+# $LB_HDD_LABEL: set hdd label
+# (Default: DEBIAN_LIVE)
+LB_HDD_LABEL="DEBIAN_LIVE"
+
+# $LB_HDD_SIZE: set hdd filesystem size
+# (Default: 10000)
+LB_HDD_SIZE="10000"
+
+# $LB_ISO_APPLICATION: set iso author
+# (Default: Debian Live)
+LB_ISO_APPLICATION="Debian Live"
+
+# $LB_ISO_PREPARER: set iso preparer
+# (Default: live-build 3.0.0-1; http://packages.qa.debian.org/live-build)
+LB_ISO_PREPARER="live-build 3.0.0-1; http://packages.qa.debian.org/live-build"
+
+# $LB_ISO_PUBLISHER: set iso publisher
+# (Default: Debian Live project; http://live.debian.net/; debian-live@lists.debian.org)
+LB_ISO_PUBLISHER="Debian Live project; http://live.debian.net/; debian-live@lists.debian.org"
+
+# $LB_ISO_VOLUME: set iso volume (max 32 chars)
+# (Default: Debian sid 20130211-20:41)
+LB_ISO_VOLUME="Debian sid 20130211-20:41"
+
+# $LB_JFFS2_ERASEBLOCK: set jffs2 eraseblock size
+# (Default: unset)
+LB_JFFS2_ERASEBLOCK=""
+
+# $LB_MEMTEST: set memtest
+# (Default: memtest86+)
+LB_MEMTEST="memtest86+"
+
+# $LB_LOADLIN: set loadlin
+# (Default: false)
+LB_LOADLIN="false"
+
+# $LB_WIN32_LOADER: set win32-loader
+# (Default: false)
+LB_WIN32_LOADER="false"
+
+# $LB_NET_ROOT_FILESYSTEM: set netboot filesystem
+# (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_FIRMWARE_BINARY: include firmware packages in debian-installer
+# (Default: true)
+LB_FIRMWARE_BINARY="true"
+
+# $LB_FIRMWARE_CHROOT: include firmware packages in debian-installer
+# (Default: true)
+LB_FIRMWARE_CHROOT="true"
+
+# $LB_SWAP_FILE_PATH: set swap file path
+# (Default: )
+LB_SWAP_FILE_PATH=""
+
+# $LB_SWAP_FILE_SIZE: set swap file size
+# (Default: 512)
+LB_SWAP_FILE_SIZE="512"
diff --git a/minimal/config/bootstrap b/minimal/config/bootstrap
new file mode 100644 (file)
index 0000000..bb5337c
--- /dev/null
@@ -0,0 +1,121 @@
+# config/bootstrap - options for live-build(7), bootstrap stage
+
+# $LB_ARCHITECTURES: select chroot architectures
+# (Default: autodetected)
+LB_ARCHITECTURES="i386"
+
+# $LB_DISTRIBUTION: select distribution to use
+# (Default: sid)
+LB_DISTRIBUTION="sid"
+
+# $LB_PARENT_DISTRIBUTION: select parent distribution to use
+# (Default: sid)
+LB_PARENT_DISTRIBUTION="sid"
+
+# $LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION: select parent distribution for debian-installer to use
+# (Default: sid)
+LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="sid"
+
+# $LB_PARENT_MIRROR_BOOTSTRAP: set parent mirror to bootstrap from
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_BOOTSTRAP="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_CHROOT: set parent mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_CHROOT="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_CHROOT_SECURITY: set security parent mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian-security/)
+LB_PARENT_MIRROR_CHROOT_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_PARENT_MIRROR_CHROOT_UPDATES: set updates parent mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_CHROOT_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_CHROOT_BACKPORTS: set backports parent mirror to fetch packages from
+# (Default: http://backports.debian.org/debian-backports/)
+LB_PARENT_MIRROR_CHROOT_BACKPORTS="http://backports.debian.org/debian-backports/"
+
+# $LB_PARENT_MIRROR_BINARY: set parent mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_BINARY="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_BINARY_SECURITY: set security parent mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian-security/)
+LB_PARENT_MIRROR_BINARY_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_PARENT_MIRROR_BINARY_UPDATES: set updates parent mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_BINARY_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_BINARY_BACKPORTS: set backports parent mirror which ends up in the image
+# (Default: http://http.debian.net/debian-backports/)
+LB_PARENT_MIRROR_BINARY_BACKPORTS="http://http.debian.net/debian-backports/"
+
+# $LB_PARENT_MIRROR_DEBIAN_INSTALLER: set debian-installer parent mirror
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_DEBIAN_INSTALLER="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_BOOTSTRAP="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_CHROOT: set mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_CHROOT="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian-security/)
+LB_MIRROR_CHROOT_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_MIRROR_CHROOT_UPDATES: set updates mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_CHROOT_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_CHROOT_BACKPORTS: set backports mirror to fetch packages from
+# (Default: http://backports.debian.org/debian-backports/)
+LB_MIRROR_CHROOT_BACKPORTS="http://backports.debian.org/debian-backports/"
+
+# $LB_MIRROR_BINARY: set mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_BINARY="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian-security/)
+LB_MIRROR_BINARY_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_MIRROR_BINARY_UPDATES: set updates mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_BINARY_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_BINARY_BACKPORTS: set backports mirror which ends up in the image
+# (Default: http://http.debian.net/debian-backports/)
+LB_MIRROR_BINARY_BACKPORTS="http://http.debian.net/debian-backports/"
+
+# $LB_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_DEBIAN_INSTALLER="http://ftp.debian.org/debian/"
+
+# $LB_ARCHIVES: enable available third-party archives
+# (Default: empty)
+LB_ARCHIVES=""
+
+# $LB_ARCHIVE_AREAS: select archive areas to use
+# (Default: main contrib non-free)
+LB_ARCHIVE_AREAS="main contrib non-free"
+
+# $LB_PARENT_ARCHIVE_AREAS: select archive areas to use
+# (Default: main contrib non-free)
+LB_PARENT_ARCHIVE_AREAS="main contrib non-free"
+
+# $LB_BOOTSTRAP_QEMU_ARCHITECTURES: architectures to use foreign bootstrap
+# (Default: )
+LB_BOOTSTRAP_QEMU_ARCHITECTURES=""
+
+# $LB_BOOTSTRAP_QEMU_EXCLUDE: packages to exclude during foreign bootstrap
+# (Default: )
+LB_BOOTSTRAP_QEMU_EXCLUDE=""
+
+# $LB_BOOTSTRAP_QEMU_STATIC: static qemu binary for foreign bootstrap
+# (Default: )
+LB_BOOTSTRAP_QEMU_STATIC=""
diff --git a/minimal/config/chroot b/minimal/config/chroot
new file mode 100644 (file)
index 0000000..9e57b9a
--- /dev/null
@@ -0,0 +1,45 @@
+# config/chroot - options for live-build(7), chroot stage
+
+# $LB_CHROOT_FILESYSTEM: set chroot filesystem
+# (Default: squashfs)
+LB_CHROOT_FILESYSTEM="squashfs"
+
+# $LB_UNION_FILESYSTEM: set union filesystem
+# (Default: aufs)
+LB_UNION_FILESYSTEM="aufs"
+
+# $LB_EXPOSED_ROOT: expose root as read only
+# (Default: false)
+LB_EXPOSED_ROOT="false"
+
+# $LB_HOOKS: set hook commands
+# (Default: empty)
+LB_HOOKS=""
+
+# $LB_INTERACTIVE: set interactive build
+# (Default: false)
+LB_INTERACTIVE="false"
+
+# $LB_KEYRING_PACKAGES: set keyring packages
+# (Default: empty)
+LB_KEYRING_PACKAGES="debian-archive-keyring"
+
+# $LB_LINUX_FLAVOURS: set kernel flavour to use
+# (Default: autodetected)
+LB_LINUX_FLAVOURS="486"
+
+# $LB_LINUX_PACKAGES: set kernel packages to use
+# (Default: autodetected)
+LB_LINUX_PACKAGES="linux-image-3.7-trunk"
+
+# $LB_SECURITY: enable security updates
+# (Default: false)
+LB_SECURITY="false"
+
+# $LB_UPDATES: enable updates updates
+# (Default: false)
+LB_UPDATES="false"
+
+# $LB_BACKPORTS: enable backports updates
+# (Default: false)
+LB_BACKPORTS="false"
diff --git a/minimal/config/common b/minimal/config/common
new file mode 100644 (file)
index 0000000..c59f2d2
--- /dev/null
@@ -0,0 +1,138 @@
+# config/common - common options for live-build(7)
+
+# LB_CONFIG_VERSION: internal version of the configuration file format
+LB_CONFIG_VERSION="3.0.0"
+
+# $LB_APT: set package manager
+# (Default: apt)
+LB_APT="apt"
+
+# $LB_APT_FTP_PROXY: set apt/aptitude ftp proxy
+# (Default: autodetected or empty)
+LB_APT_FTP_PROXY=""
+
+# $LB_APT_HTTP_PROXY: set apt/aptitude http proxy
+# (Default: autodetected or empty)
+LB_APT_HTTP_PROXY=""
+
+# $LB_APT_PIPELINE: set apt/aptitude pipeline depth
+# (Default: )
+LB_APT_PIPELINE=""
+
+# $LB_APT_RECOMMENDS: set apt/aptitude recommends
+# (Default: false)
+LB_APT_RECOMMENDS="false"
+
+# $LB_APT_SECURE: set apt/aptitude security
+# (Default: true)
+LB_APT_SECURE="true"
+
+# $LB_APT_SOURCE_ARCHIVES: set apt/aptitude source entries in sources.list
+# (Default: true)
+LB_APT_SOURCE_ARCHIVES="true"
+
+# $LB_BOOTSTRAP: set bootstrap program
+# (Default: debootstrap)
+LB_BOOTSTRAP="debootstrap"
+
+# $LB_CACHE: control cache
+# (Default: true)
+LB_CACHE="true"
+
+# $LB_CACHE_INDICES: control if downloaded package indices should be cached
+# (Default: false)
+LB_CACHE_INDICES="false"
+
+# $LB_CACHE_PACKAGES: control if downloaded packages files should be cached
+# (Default: true)
+LB_CACHE_PACKAGES="true"
+
+# $LB_CACHE_STAGES: control if completed stages should be cached
+# (Default: bootstrap)
+LB_CACHE_STAGES="bootstrap"
+
+# $LB_DEBCONF_FRONTEND: set debconf(1) frontend to use
+# (Default: noninteractive)
+LB_DEBCONF_FRONTEND="noninteractive"
+
+# $LB_DEBCONF_PRIORITY: set debconf(1) priority to use
+# (Default: critical)
+LB_DEBCONF_PRIORITY="critical"
+
+# $LB_INITRAMFS: set initramfs hook
+# (Default: live-boot)
+LB_INITRAMFS="live-boot"
+
+# $LB_INITRAMFS_COMPRESSION: set initramfs compression
+# (Default: gzip)
+LB_INITRAMFS_COMPRESSION="gzip"
+
+# $LB_INITSYSTEM: set init system
+# (Default: sysvinit)
+LB_INITSYSTEM="sysvinit"
+
+# $LB_FDISK: set fdisk program
+# (Default: autodetected)
+LB_FDISK="fdisk.distrib"
+
+# $LB_LOSETUP: set losetup program
+# (Default: autodetected)
+LB_LOSETUP="losetup"
+
+# $LB_MODE: set distribution mode
+# (Default: debian)
+LB_MODE="debian"
+
+# $LB_SYSTEM: set system type
+# (Default: live)
+LB_SYSTEM="live"
+
+# $LB_ROOT_COMMAND: use sudo or equivalent
+# (Default: empty)
+#LB_ROOT_COMMAND="sudo"
+
+# $LB_USE_FAKEROOT: use fakeroot/fakechroot
+# (Default: false)
+LB_USE_FAKEROOT="false"
+
+# $LB_TASKSEL: set tasksel program
+# (Default: apt)
+LB_TASKSEL="apt"
+
+# $LB_TEMPLATES: set templates
+# (Default: /usr/share/live/build/templates)
+LB_TEMPLATES="/usr/share/live/build/templates"
+
+# live-build options
+
+# $_BREAKPOINTS: enable breakpoints
+# (Default: false)
+#_BREAKPOINTS="false"
+
+# $_DEBUG: enable debug
+# (Default: false)
+#_DEBUG="false"
+
+# $_COLOR: enable color
+# (Default: false)
+#_COLOR="false"
+
+# $_FORCE: enable force
+# (Default: false)
+#_FORCE="false"
+
+# $_QUIET: enable quiet
+# (Default: false)
+_QUIET="false"
+
+# $_VERBOSE: enable verbose
+# (Default: false)
+#_VERBOSE="false"
+
+# Internal stuff (FIXME)
+APT_OPTIONS="--yes"
+APTITUDE_OPTIONS="--assume-yes"
+DEBOOTSTRAP_OPTIONS=""
+CDEBOOTSTRAP_OPTIONS="--flavour=minimal"
+GZIP_OPTIONS="-6  --rsyncable"
+ISOHYBRID_OPTIONS=""
diff --git a/minimal/config/package-lists/dkms.list.chroot b/minimal/config/package-lists/dkms.list.chroot
new file mode 100644 (file)
index 0000000..8861ef5
--- /dev/null
@@ -0,0 +1,5 @@
+pciutils
+#if ARCHIVE_AREAS non-free
+        # broadcom-sta
+        broadcom-sta-dkms
+#endif
diff --git a/minimal/config/package-lists/package.list.chroot b/minimal/config/package-lists/package.list.chroot
new file mode 100644 (file)
index 0000000..3240c3a
--- /dev/null
@@ -0,0 +1,7 @@
+user-setup 
+sudo 
+cryptsetup 
+apt-utils
+vim
+screen
+aircrack-ng
diff --git a/minimal/config/source b/minimal/config/source
new file mode 100644 (file)
index 0000000..93a022a
--- /dev/null
@@ -0,0 +1,9 @@
+# config/source - options for live-build(7), source stage
+
+# $LB_SOURCE: set source option
+# (Default: false)
+LB_SOURCE="false"
+
+# $LB_SOURCE_IMAGES: set image type
+# (Default: tar)
+LB_SOURCE_IMAGES="tar"
diff --git a/xfce-desktop/auto/build b/xfce-desktop/auto/build
new file mode 100755 (executable)
index 0000000..6d559e8
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+lb build noauto "${@}" 2>&1 | tee build.log
diff --git a/xfce-desktop/auto/clean b/xfce-desktop/auto/clean
new file mode 100755 (executable)
index 0000000..3e24032
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+lb clean noauto "${@}"
+
+rm -f config/binary config/bootstrap config/chroot config/common config/source
+rm -f build.log
diff --git a/xfce-desktop/auto/config b/xfce-desktop/auto/config
new file mode 100755 (executable)
index 0000000..18875f8
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+ mirror="http://ftp.debian.org/debian/"  
+ security_mirror="http://ftp.debian.org/debian-security/"  
+ lb config noauto \
+     -a i386 \
+     -b hdd \
+     -d sid \
+     --linux-flavours 686-pae \
+     --mode debian \ 
+     --debian-installer live \
+     --debian-installer-gui true \
+     --bootstrap cdebootstrap \
+     --cdebootstrap-options "--flavour=minimal" \
+     --bootappend-live "\
+     boot=live \
+     config \
+     persistent=cryptsetup \
+     persistence-encryption=luks \
+     username=stack \
+     hostname=acqua \
+     persistence \
+     live-config.locales=it_IT live-config.timezone=Europe/Rome live-config.keyboard-layouts=it \
+     " \
+     --apt-indices false  --archive-areas "main contrib non-free" \
+     --apt-recommends false \
+     --linux-packages linux-image-3.7-trunk \
+     --mirror-bootstrap "${mirror}" \
+     --mirror-binary "${mirror}" \
+     --mirror-chroot-security "${security_mirror}" \
+     --mirror-binary-security "${security_mirror}" \
+       "${@}"
diff --git a/xfce-desktop/config/archives/experimental.list.chroot b/xfce-desktop/config/archives/experimental.list.chroot
new file mode 100644 (file)
index 0000000..88aba8e
--- /dev/null
@@ -0,0 +1 @@
+deb http://ftp.debian.org/debian/ experimental main
diff --git a/xfce-desktop/config/archives/sid.pref.chroot b/xfce-desktop/config/archives/sid.pref.chroot
new file mode 100644 (file)
index 0000000..1e0ade2
--- /dev/null
@@ -0,0 +1,11 @@
+Package: user-setup
+Pin: release n=wheezy
+Pin-Priority: 600
+
+Package: syslinu*
+Pin: release n=wheezy
+Pin-Priority: 600
+
+Package: *
+Pin: release n=experimental
+Pin-Priority: 1
diff --git a/xfce-desktop/config/archives/wheezy.list.chroot b/xfce-desktop/config/archives/wheezy.list.chroot
new file mode 100644 (file)
index 0000000..7d667ae
--- /dev/null
@@ -0,0 +1 @@
+deb http://ftp.debian.org/debian/ wheezy main
diff --git a/xfce-desktop/config/binary b/xfce-desktop/config/binary
new file mode 100644 (file)
index 0000000..f8f7393
--- /dev/null
@@ -0,0 +1,158 @@
+# config/binary - options for live-build(7), binary stage
+
+# $LB_BINARY_FILESYSTEM: set image filesystem
+# (Default: fat32)
+LB_BINARY_FILESYSTEM="fat32"
+
+# $LB_BINARY_IMAGES: set image type
+# (Default: hdd)
+LB_BINARY_IMAGES="hdd"
+
+# $LB_APT_INDICES: set apt/aptitude generic indices
+# (Default: false)
+LB_APT_INDICES="false"
+
+# $LB_BOOTAPPEND_LIVE: set boot parameters
+# (Default: empty)
+LB_BOOTAPPEND_LIVE="     boot=live      config      persistent=cryptsetup      persistence-encryption=luks      username=stack      hostname=acqua      persistence      live-config.locales=it_IT live-config.timezone=Europe/Rome live-config.keyboard-layouts=it      "
+
+# $LB_BOOTAPPEND_INSTALL: set boot parameters
+# (Default: empty)
+LB_BOOTAPPEND_INSTALL=""
+
+# $LB_BOOTAPPEND_LIVE_FAILSAFE: set boot parameters
+# (Default: empty)
+LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live config memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal"
+
+# $LB_BOOTLOADER: set bootloader
+# (Default: syslinux)
+LB_BOOTLOADER="syslinux"
+
+# $LB_CHECKSUMS: set checksums
+# (Default: md5)
+LB_CHECKSUMS="md5"
+
+# $LB_COMPRESSION: set compression
+# (Default: none)
+LB_COMPRESSION="none"
+
+# $LB_ZSYNC: set zsync
+# (Default: true)
+LB_ZSYNC="true"
+
+# ${LB_BUILD_WITH_CHROOT: control if we build binary images chrooted
+# (Default: true)
+# DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false.
+LB_BUILD_WITH_CHROOT="true"
+
+# $LB_DEBIAN_INSTALLER: set debian-installer
+# (Default: false)
+LB_DEBIAN_INSTALLER="false"
+
+# $LB_DEBIAN_INSTALLER_DISTRIBUTION: set debian-installer suite
+# (Default: empty)
+LB_DEBIAN_INSTALLER_DISTRIBUTION="sid"
+
+# $LB_DEBIAN_INSTALLER_PRESEEDFILE: set debian-installer preseed filename/url
+# (Default: )
+LB_DEBIAN_INSTALLER_PRESEEDFILE=""
+
+# $LB_DEBIAN_INSTALLER_GUI: toggle use of GUI debian-installer
+# (Default: true)
+LB_DEBIAN_INSTALLER_GUI="true"
+
+# $LB_GRUB_SPLASH: set custom grub splash
+# (Default: empty)
+LB_GRUB_SPLASH=""
+
+# $LB_HDD_LABEL: set hdd label
+# (Default: DEBIAN_LIVE)
+LB_HDD_LABEL="DEBIAN_LIVE"
+
+# $LB_HDD_SIZE: set hdd filesystem size
+# (Default: 10000)
+LB_HDD_SIZE="10000"
+
+# $LB_ISO_APPLICATION: set iso author
+# (Default: Debian Live)
+LB_ISO_APPLICATION="Debian Live"
+
+# $LB_ISO_PREPARER: set iso preparer
+# (Default: live-build 3.0.0-1; http://packages.qa.debian.org/live-build)
+LB_ISO_PREPARER="live-build 3.0.0-1; http://packages.qa.debian.org/live-build"
+
+# $LB_ISO_PUBLISHER: set iso publisher
+# (Default: Debian Live project; http://live.debian.net/; debian-live@lists.debian.org)
+LB_ISO_PUBLISHER="Debian Live project; http://live.debian.net/; debian-live@lists.debian.org"
+
+# $LB_ISO_VOLUME: set iso volume (max 32 chars)
+# (Default: Debian sid 20130211-20:41)
+LB_ISO_VOLUME="Debian sid 20130211-20:41"
+
+# $LB_JFFS2_ERASEBLOCK: set jffs2 eraseblock size
+# (Default: unset)
+LB_JFFS2_ERASEBLOCK=""
+
+# $LB_MEMTEST: set memtest
+# (Default: memtest86+)
+LB_MEMTEST="memtest86+"
+
+# $LB_LOADLIN: set loadlin
+# (Default: false)
+LB_LOADLIN="false"
+
+# $LB_WIN32_LOADER: set win32-loader
+# (Default: false)
+LB_WIN32_LOADER="false"
+
+# $LB_NET_ROOT_FILESYSTEM: set netboot filesystem
+# (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_FIRMWARE_BINARY: include firmware packages in debian-installer
+# (Default: true)
+LB_FIRMWARE_BINARY="true"
+
+# $LB_FIRMWARE_CHROOT: include firmware packages in debian-installer
+# (Default: true)
+LB_FIRMWARE_CHROOT="true"
+
+# $LB_SWAP_FILE_PATH: set swap file path
+# (Default: )
+LB_SWAP_FILE_PATH=""
+
+# $LB_SWAP_FILE_SIZE: set swap file size
+# (Default: 512)
+LB_SWAP_FILE_SIZE="512"
diff --git a/xfce-desktop/config/bootstrap b/xfce-desktop/config/bootstrap
new file mode 100644 (file)
index 0000000..bb5337c
--- /dev/null
@@ -0,0 +1,121 @@
+# config/bootstrap - options for live-build(7), bootstrap stage
+
+# $LB_ARCHITECTURES: select chroot architectures
+# (Default: autodetected)
+LB_ARCHITECTURES="i386"
+
+# $LB_DISTRIBUTION: select distribution to use
+# (Default: sid)
+LB_DISTRIBUTION="sid"
+
+# $LB_PARENT_DISTRIBUTION: select parent distribution to use
+# (Default: sid)
+LB_PARENT_DISTRIBUTION="sid"
+
+# $LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION: select parent distribution for debian-installer to use
+# (Default: sid)
+LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="sid"
+
+# $LB_PARENT_MIRROR_BOOTSTRAP: set parent mirror to bootstrap from
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_BOOTSTRAP="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_CHROOT: set parent mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_CHROOT="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_CHROOT_SECURITY: set security parent mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian-security/)
+LB_PARENT_MIRROR_CHROOT_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_PARENT_MIRROR_CHROOT_UPDATES: set updates parent mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_CHROOT_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_CHROOT_BACKPORTS: set backports parent mirror to fetch packages from
+# (Default: http://backports.debian.org/debian-backports/)
+LB_PARENT_MIRROR_CHROOT_BACKPORTS="http://backports.debian.org/debian-backports/"
+
+# $LB_PARENT_MIRROR_BINARY: set parent mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_BINARY="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_BINARY_SECURITY: set security parent mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian-security/)
+LB_PARENT_MIRROR_BINARY_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_PARENT_MIRROR_BINARY_UPDATES: set updates parent mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_BINARY_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_PARENT_MIRROR_BINARY_BACKPORTS: set backports parent mirror which ends up in the image
+# (Default: http://http.debian.net/debian-backports/)
+LB_PARENT_MIRROR_BINARY_BACKPORTS="http://http.debian.net/debian-backports/"
+
+# $LB_PARENT_MIRROR_DEBIAN_INSTALLER: set debian-installer parent mirror
+# (Default: http://ftp.debian.org/debian/)
+LB_PARENT_MIRROR_DEBIAN_INSTALLER="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_BOOTSTRAP="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_CHROOT: set mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_CHROOT="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian-security/)
+LB_MIRROR_CHROOT_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_MIRROR_CHROOT_UPDATES: set updates mirror to fetch packages from
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_CHROOT_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_CHROOT_BACKPORTS: set backports mirror to fetch packages from
+# (Default: http://backports.debian.org/debian-backports/)
+LB_MIRROR_CHROOT_BACKPORTS="http://backports.debian.org/debian-backports/"
+
+# $LB_MIRROR_BINARY: set mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_BINARY="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian-security/)
+LB_MIRROR_BINARY_SECURITY="http://ftp.debian.org/debian-security/"
+
+# $LB_MIRROR_BINARY_UPDATES: set updates mirror which ends up in the image
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_BINARY_UPDATES="http://ftp.debian.org/debian/"
+
+# $LB_MIRROR_BINARY_BACKPORTS: set backports mirror which ends up in the image
+# (Default: http://http.debian.net/debian-backports/)
+LB_MIRROR_BINARY_BACKPORTS="http://http.debian.net/debian-backports/"
+
+# $LB_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror
+# (Default: http://ftp.debian.org/debian/)
+LB_MIRROR_DEBIAN_INSTALLER="http://ftp.debian.org/debian/"
+
+# $LB_ARCHIVES: enable available third-party archives
+# (Default: empty)
+LB_ARCHIVES=""
+
+# $LB_ARCHIVE_AREAS: select archive areas to use
+# (Default: main contrib non-free)
+LB_ARCHIVE_AREAS="main contrib non-free"
+
+# $LB_PARENT_ARCHIVE_AREAS: select archive areas to use
+# (Default: main contrib non-free)
+LB_PARENT_ARCHIVE_AREAS="main contrib non-free"
+
+# $LB_BOOTSTRAP_QEMU_ARCHITECTURES: architectures to use foreign bootstrap
+# (Default: )
+LB_BOOTSTRAP_QEMU_ARCHITECTURES=""
+
+# $LB_BOOTSTRAP_QEMU_EXCLUDE: packages to exclude during foreign bootstrap
+# (Default: )
+LB_BOOTSTRAP_QEMU_EXCLUDE=""
+
+# $LB_BOOTSTRAP_QEMU_STATIC: static qemu binary for foreign bootstrap
+# (Default: )
+LB_BOOTSTRAP_QEMU_STATIC=""
diff --git a/xfce-desktop/config/chroot b/xfce-desktop/config/chroot
new file mode 100644 (file)
index 0000000..9e57b9a
--- /dev/null
@@ -0,0 +1,45 @@
+# config/chroot - options for live-build(7), chroot stage
+
+# $LB_CHROOT_FILESYSTEM: set chroot filesystem
+# (Default: squashfs)
+LB_CHROOT_FILESYSTEM="squashfs"
+
+# $LB_UNION_FILESYSTEM: set union filesystem
+# (Default: aufs)
+LB_UNION_FILESYSTEM="aufs"
+
+# $LB_EXPOSED_ROOT: expose root as read only
+# (Default: false)
+LB_EXPOSED_ROOT="false"
+
+# $LB_HOOKS: set hook commands
+# (Default: empty)
+LB_HOOKS=""
+
+# $LB_INTERACTIVE: set interactive build
+# (Default: false)
+LB_INTERACTIVE="false"
+
+# $LB_KEYRING_PACKAGES: set keyring packages
+# (Default: empty)
+LB_KEYRING_PACKAGES="debian-archive-keyring"
+
+# $LB_LINUX_FLAVOURS: set kernel flavour to use
+# (Default: autodetected)
+LB_LINUX_FLAVOURS="486"
+
+# $LB_LINUX_PACKAGES: set kernel packages to use
+# (Default: autodetected)
+LB_LINUX_PACKAGES="linux-image-3.7-trunk"
+
+# $LB_SECURITY: enable security updates
+# (Default: false)
+LB_SECURITY="false"
+
+# $LB_UPDATES: enable updates updates
+# (Default: false)
+LB_UPDATES="false"
+
+# $LB_BACKPORTS: enable backports updates
+# (Default: false)
+LB_BACKPORTS="false"
diff --git a/xfce-desktop/config/common b/xfce-desktop/config/common
new file mode 100644 (file)
index 0000000..c59f2d2
--- /dev/null
@@ -0,0 +1,138 @@
+# config/common - common options for live-build(7)
+
+# LB_CONFIG_VERSION: internal version of the configuration file format
+LB_CONFIG_VERSION="3.0.0"
+
+# $LB_APT: set package manager
+# (Default: apt)
+LB_APT="apt"
+
+# $LB_APT_FTP_PROXY: set apt/aptitude ftp proxy
+# (Default: autodetected or empty)
+LB_APT_FTP_PROXY=""
+
+# $LB_APT_HTTP_PROXY: set apt/aptitude http proxy
+# (Default: autodetected or empty)
+LB_APT_HTTP_PROXY=""
+
+# $LB_APT_PIPELINE: set apt/aptitude pipeline depth
+# (Default: )
+LB_APT_PIPELINE=""
+
+# $LB_APT_RECOMMENDS: set apt/aptitude recommends
+# (Default: false)
+LB_APT_RECOMMENDS="false"
+
+# $LB_APT_SECURE: set apt/aptitude security
+# (Default: true)
+LB_APT_SECURE="true"
+
+# $LB_APT_SOURCE_ARCHIVES: set apt/aptitude source entries in sources.list
+# (Default: true)
+LB_APT_SOURCE_ARCHIVES="true"
+
+# $LB_BOOTSTRAP: set bootstrap program
+# (Default: debootstrap)
+LB_BOOTSTRAP="debootstrap"
+
+# $LB_CACHE: control cache
+# (Default: true)
+LB_CACHE="true"
+
+# $LB_CACHE_INDICES: control if downloaded package indices should be cached
+# (Default: false)
+LB_CACHE_INDICES="false"
+
+# $LB_CACHE_PACKAGES: control if downloaded packages files should be cached
+# (Default: true)
+LB_CACHE_PACKAGES="true"
+
+# $LB_CACHE_STAGES: control if completed stages should be cached
+# (Default: bootstrap)
+LB_CACHE_STAGES="bootstrap"
+
+# $LB_DEBCONF_FRONTEND: set debconf(1) frontend to use
+# (Default: noninteractive)
+LB_DEBCONF_FRONTEND="noninteractive"
+
+# $LB_DEBCONF_PRIORITY: set debconf(1) priority to use
+# (Default: critical)
+LB_DEBCONF_PRIORITY="critical"
+
+# $LB_INITRAMFS: set initramfs hook
+# (Default: live-boot)
+LB_INITRAMFS="live-boot"
+
+# $LB_INITRAMFS_COMPRESSION: set initramfs compression
+# (Default: gzip)
+LB_INITRAMFS_COMPRESSION="gzip"
+
+# $LB_INITSYSTEM: set init system
+# (Default: sysvinit)
+LB_INITSYSTEM="sysvinit"
+
+# $LB_FDISK: set fdisk program
+# (Default: autodetected)
+LB_FDISK="fdisk.distrib"
+
+# $LB_LOSETUP: set losetup program
+# (Default: autodetected)
+LB_LOSETUP="losetup"
+
+# $LB_MODE: set distribution mode
+# (Default: debian)
+LB_MODE="debian"
+
+# $LB_SYSTEM: set system type
+# (Default: live)
+LB_SYSTEM="live"
+
+# $LB_ROOT_COMMAND: use sudo or equivalent
+# (Default: empty)
+#LB_ROOT_COMMAND="sudo"
+
+# $LB_USE_FAKEROOT: use fakeroot/fakechroot
+# (Default: false)
+LB_USE_FAKEROOT="false"
+
+# $LB_TASKSEL: set tasksel program
+# (Default: apt)
+LB_TASKSEL="apt"
+
+# $LB_TEMPLATES: set templates
+# (Default: /usr/share/live/build/templates)
+LB_TEMPLATES="/usr/share/live/build/templates"
+
+# live-build options
+
+# $_BREAKPOINTS: enable breakpoints
+# (Default: false)
+#_BREAKPOINTS="false"
+
+# $_DEBUG: enable debug
+# (Default: false)
+#_DEBUG="false"
+
+# $_COLOR: enable color
+# (Default: false)
+#_COLOR="false"
+
+# $_FORCE: enable force
+# (Default: false)
+#_FORCE="false"
+
+# $_QUIET: enable quiet
+# (Default: false)
+_QUIET="false"
+
+# $_VERBOSE: enable verbose
+# (Default: false)
+#_VERBOSE="false"
+
+# Internal stuff (FIXME)
+APT_OPTIONS="--yes"
+APTITUDE_OPTIONS="--assume-yes"
+DEBOOTSTRAP_OPTIONS=""
+CDEBOOTSTRAP_OPTIONS="--flavour=minimal"
+GZIP_OPTIONS="-6  --rsyncable"
+ISOHYBRID_OPTIONS=""
diff --git a/xfce-desktop/config/package-lists/desktop.list.chroot b/xfce-desktop/config/package-lists/desktop.list.chroot
new file mode 100644 (file)
index 0000000..f221832
--- /dev/null
@@ -0,0 +1,13 @@
+task-xfce-desktop
+task-laptop
+task-print-server
+task-ssh-server
+
+#nif DISTRIBUTION wheezy
+        plymouth plymouth-drm plymouth-x11
+#endif
+
+#if DISTRIBUTION sid
+        #gstreamer-vaapi
+        i965-va-driver
+#endif
diff --git a/xfce-desktop/config/package-lists/dkms.list.chroot b/xfce-desktop/config/package-lists/dkms.list.chroot
new file mode 100644 (file)
index 0000000..150450b
--- /dev/null
@@ -0,0 +1,24 @@
+open-vm-dkms
+open-vm-tools open-vm-toolbox
+
+# virtualbox
+virtualbox-guest-dkms
+virtualbox-guest-utils virtualbox-guest-x11
+
+# live-config xserver-xorg script
+pciutils
+
+#if ARCHIVE_AREAS non-free
+        # broadcom-sta
+        broadcom-sta-dkms
+
+        # fglrx-driver
+        fglrx-modules-dkms
+        fglrx-driver fglrx-control
+
+        # nvidia-graphics-drivers
+        nvidia-kernel-dkms
+        nvidia-glx xserver-xorg-video-nvidia
+        nvidia-settings nvidia-xconfig nvclock
+        nvidia-vdpau-driver vdpau-va-driver
+#endif
diff --git a/xfce-desktop/config/package-lists/installer.live.chroot b/xfce-desktop/config/package-lists/installer.live.chroot
new file mode 100644 (file)
index 0000000..d82b83d
--- /dev/null
@@ -0,0 +1 @@
+debian-installer-launcher
diff --git a/xfce-desktop/config/package-lists/package.list.chroot b/xfce-desktop/config/package-lists/package.list.chroot
new file mode 100644 (file)
index 0000000..3240c3a
--- /dev/null
@@ -0,0 +1,7 @@
+user-setup 
+sudo 
+cryptsetup 
+apt-utils
+vim
+screen
+aircrack-ng
diff --git a/xfce-desktop/config/package-lists/standard.live.chroot b/xfce-desktop/config/package-lists/standard.live.chroot
new file mode 100644 (file)
index 0000000..f17ce40
--- /dev/null
@@ -0,0 +1 @@
+! Packages Priority standard
diff --git a/xfce-desktop/config/source b/xfce-desktop/config/source
new file mode 100644 (file)
index 0000000..93a022a
--- /dev/null
@@ -0,0 +1,9 @@
+# config/source - options for live-build(7), source stage
+
+# $LB_SOURCE: set source option
+# (Default: false)
+LB_SOURCE="false"
+
+# $LB_SOURCE_IMAGES: set image type
+# (Default: tar)
+LB_SOURCE_IMAGES="tar"