summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2015-05-16 00:42:29 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2015-05-16 00:42:29 -0400
commit00b967901c48b722a680c7f18d8d3a219a14bf3b (patch)
tree5db157b4a39fca301c1e5f218a905c383937f605
Initial commit
-rw-r--r--.gitignore15
-rwxr-xr-xauto/build5
-rwxr-xr-xauto/clean10
-rwxr-xr-xauto/config80
-rw-r--r--config/archives/liquorix.key.binarybin0 -> 1166 bytes
-rw-r--r--config/archives/liquorix.key.chrootbin0 -> 1166 bytes
-rw-r--r--config/archives/liquorix.list.binary2
-rw-r--r--config/archives/liquorix.list.chroot2
-rw-r--r--config/archives/vanir.key.binary30
-rw-r--r--config/archives/vanir.key.chroot30
-rw-r--r--config/archives/vanir.list.binary2
-rw-r--r--config/archives/vanir.list.chroot2
-rw-r--r--config/build10
-rwxr-xr-xconfig/hooks/persistence-menu.binary18
-rwxr-xr-xconfig/hooks/sleep.chroot3
-rw-r--r--config/includes.binary/boot/grub/loopback.cfg19
-rw-r--r--config/includes.binary/isolinux/splash.pngbin0 -> 215078 bytes
-rw-r--r--config/includes.binary/isolinux/stdmenu.cfg16
-rw-r--r--config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path21
-rw-r--r--config/package-lists/desktop.list.chroot141
-rw-r--r--config/package-lists/live.list.chroot4
-rw-r--r--config/package-lists/standard.list.chroot1
-rw-r--r--docs/desktop.base62
-rw-r--r--docs/ubuntu.base36
-rw-r--r--docs/xubuntu-core.base40
-rw-r--r--docs/xubuntu-desktop.base69
26 files changed, 618 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8e671e2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+binary.*
+prepare.log
+binary
+images
+cache
+chroot
+chroot.packages.install
+chroot.packages.live
+.stage
+.lock
+.build/
+config/binary
+config/bootstrap
+config/common
+config/source
diff --git a/auto/build b/auto/build
new file mode 100755
index 0000000..f8d8346
--- /dev/null
+++ b/auto/build
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+set -e
+
+lb build noauto "${@}" 2>&1 | tee build.log
diff --git a/auto/clean b/auto/clean
new file mode 100755
index 0000000..5a0c82a
--- /dev/null
+++ b/auto/clean
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+lb clean noauto "${@}"
+
+rm -f config/binary config/bootstrap config/chroot config/common config/source
+rm -f build.log prepare.log config/archives/liquorix.list.*
+find config -empty -delete
+find config -type l -delete
diff --git a/auto/config b/auto/config
new file mode 100755
index 0000000..f3d918f
--- /dev/null
+++ b/auto/config
@@ -0,0 +1,80 @@
+#!/bin/sh
+
+# You can put local mirrors here if you want
+mirror=http://httpredir.debian.org/debian/
+
+# Detect target architecture and filter args
+temp=""
+arch=$(dpkg --print-architecture)
+dist="stretch"
+lb_opts=""
+while [ $# -gt 0 ]; do
+ arg="$1"
+ case "$arg" in
+ -a|--arch|--architecture|--architectures)
+ arch="$2"
+ temp="$temp "'"'"$arg"'"'
+ temp="$temp "'"'"$2"'"'
+ shift
+ ;;
+ --liquorix)
+ liquorix="1"
+ ;;
+ --sid|--unstable)
+ dist="sid"
+ ;;
+ *)
+ temp="$temp "'"'"$arg"'"'
+ ;;
+ esac
+ shift
+done
+eval set -- "$temp"
+
+if [ -n "$liquorix" ]; then
+ mkdir -p config/archives
+ echo "deb http://mirror.unit193.net/liquorix sid main" \
+ > config/archives/liquorix.list.chroot
+ echo "deb http://mirror.unit193.net/liquorix sid main" \
+ > config/archives/liquorix.list.binary
+fi
+
+case "$arch" in
+ amd64)
+ if [ -n "$liquorix" ]; then
+ lb_opts="$lb_opts --debian-installer live --linux-flavours liquorix-amd64"
+ else
+ lb_opts="$lb_opts --debian-installer live"
+ fi
+ ;;
+ i386)
+ if [ -n "$liquorix" ]; then
+ lb_opts="$lb_opts --debian-installer live --linux-flavours liquorix-686-pae"
+ else
+ lb_opts="$lb_opts --debian-installer live --linux-flavours 686-pae"
+ fi
+ ;;
+ armel|armhf)
+ lb_opts="$lb_opts --binary-images hdd --binary-filesystem ext4 --chroot-filesystem none"
+ ;;
+ *)
+ echo "WARNING: configuration not tested on arch $arch" >&2
+ ;;
+esac
+
+lb config noauto \
+ --distribution "$dist" \
+ --debian-installer-distribution "$dist" \
+ --archive-areas "main contrib non-free" \
+ --bootstrap cdebootstrap \
+ --mirror-bootstrap "$mirror" \
+ --mirror-debian-installer "$mirror" \
+ --firmware-binary true \
+ --firmware-chroot true \
+ --iso-application "Xubuntu" \
+ --iso-publisher "Unit 193" \
+ --iso-volume "Xubuntu Live" \
+ --linux-packages linux-image \
+ --bootappend-live "boot=live nocomponents=xfce4-panel noconfig=sudo username=xubuntu hostname=xubuntu" \
+ $lb_opts \
+ "$@"
diff --git a/config/archives/liquorix.key.binary b/config/archives/liquorix.key.binary
new file mode 100644
index 0000000..2b24597
--- /dev/null
+++ b/config/archives/liquorix.key.binary
Binary files differ
diff --git a/config/archives/liquorix.key.chroot b/config/archives/liquorix.key.chroot
new file mode 100644
index 0000000..2b24597
--- /dev/null
+++ b/config/archives/liquorix.key.chroot
Binary files differ
diff --git a/config/archives/liquorix.list.binary b/config/archives/liquorix.list.binary
new file mode 100644
index 0000000..898c2c1
--- /dev/null
+++ b/config/archives/liquorix.list.binary
@@ -0,0 +1,2 @@
+deb http://mirror.unit193.net/liquorix sid main
+deb-src http://mirror.unit193.net/liquorix sid main
diff --git a/config/archives/liquorix.list.chroot b/config/archives/liquorix.list.chroot
new file mode 100644
index 0000000..898c2c1
--- /dev/null
+++ b/config/archives/liquorix.list.chroot
@@ -0,0 +1,2 @@
+deb http://mirror.unit193.net/liquorix sid main
+deb-src http://mirror.unit193.net/liquorix sid main
diff --git a/config/archives/vanir.key.binary b/config/archives/vanir.key.binary
new file mode 100644
index 0000000..584d367
--- /dev/null
+++ b/config/archives/vanir.key.binary
@@ -0,0 +1,30 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+
+mQENBFENVxABCACzU9j4Jw47gduD5lKDocAAkw/ofp+1KqX/WBnDGhA0MdZAZwVC
+gDaxFInpcZK0vIjj9rtpifjBMKCATXu1dA152+DNcAAHANozt7RfQklJYSCiVnv5
+Ltyfh+7/HtiLxgoFbZzIyRvoLnarDWZJoz1p37ex3ZaU7w2Zc0WPEW6w4ZJoLje3
+whjYvYuCtjI5qG5Z9A0NR3tBl8CDifgEgIzHXixFUCiTjej8+oTwBbxOztrmTnSb
+oOPUB1xfZXhfDBBjg/rA67E3sd7++pscnIGgcUbgNwoGgla8yMM5l/rUikal/13l
+WMgu62JFfQGFGPmv2XmweWf87gjrXkFAx/MRABEBAAG0KlZhbmlyIFJlbGVhc2Ug
+S2V5IDx1bml0MTkzQG5pbnRoZmxvb3Iub3JnPokBOAQTAQIAIgUCUQ1XEAIbAwYL
+CQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQA10g/Hok7xhb1AgAo4b/ZrutYYU2
+2mVpzslGnpR+VcMrMH9SGh6vTU8lbFQBtxEn7Y9af3AWw4l1lIqyk+SwgLHPFZCl
+KwYQfG17Fe5XgnAedQTxKwTPrraxAob8sKy4NyU1vvfxog83vKKU1pbPj/72GIui
+6gJJAohHSugzCLOTnt6Wp8Kb1Ynb/paUVce9vdOfX+Nk2ZRtZ7nsxhFg4cfWGy3p
+/6RXN0MugzZKffRj3dVOndnEsuCL+jwotjhplPuvffKgrGsMGqId1Gc8rQXLsVF9
+XY4K7RfkQSMbm2q4KVZO1KyIvzI/EbgwpYnyuV5CVmSviDYUKrQivkMwTqBHuucR
+xvwJdEeMWrkBDQRRDVcQAQgAx8vtZ9heZBKNTzy+RTRSIiuBCH84whcCi0xCfmv6
+/JcxBwpgElfQ4w5ew1eNBk8uVqj/0YGmWP9ustmtCVr9avEZvbBPBrhNsp0rP3ps
+HMzafNo6/FfdZM1qDbGsqMFSedGtJUdRc0obl+i1dkH/tnB/MVxzjSBbPefrs9oE
+/OCFogwDGTVqzYYzzcqIrr+znoe6LocGfMHriW6k//iYhvLwWgh3fb8zPXGBrDYd
+BnssZFo4h8/vTC+autwd5lJdmgyiASAc/R4ZZdqgxYQcFNe9DTqyyBEfFJEiZg9P
+0VfCQ9COiwyPAtmD1uiV+2LC0VTzPpIkBEAVt1Wpohp8WwARAQABiQEfBBgBAgAJ
+BQJRDVcQAhsMAAoJEANdIPx6JO8YpGwH/iLUoF8MpszhxaN5JUOgF5B7IVxwpl9D
+qqTHsvFFtW6e8SBeXLGJ9dq2M0S8j2mB5lR/3wVpsTTfDkDishZS3tYOZO6Mk2ds
+suR9tuzp8IGNoD1p94qE4gCFxw6ZSTUzdOaVWs4wOMEOspwqdkxKscKkIsuIGBkh
+6KxyINefJc+vtMVVZNY/DXGfHWKRwLuyAnwD04CHKIhlkl16S5WrH33Rv6R/r40h
+UPow+PsKEphzaepmNYloutljWCi/zN1tiMiVMRUsgDqKMNgumg/aziHe5xiVsZ3R
+o5stp4Rf0qqo73xkhIXgMDzfVId2JyLCNh/DfxTc42kwxqSY/sbjPtc=
+=V2eq
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/config/archives/vanir.key.chroot b/config/archives/vanir.key.chroot
new file mode 100644
index 0000000..584d367
--- /dev/null
+++ b/config/archives/vanir.key.chroot
@@ -0,0 +1,30 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+
+mQENBFENVxABCACzU9j4Jw47gduD5lKDocAAkw/ofp+1KqX/WBnDGhA0MdZAZwVC
+gDaxFInpcZK0vIjj9rtpifjBMKCATXu1dA152+DNcAAHANozt7RfQklJYSCiVnv5
+Ltyfh+7/HtiLxgoFbZzIyRvoLnarDWZJoz1p37ex3ZaU7w2Zc0WPEW6w4ZJoLje3
+whjYvYuCtjI5qG5Z9A0NR3tBl8CDifgEgIzHXixFUCiTjej8+oTwBbxOztrmTnSb
+oOPUB1xfZXhfDBBjg/rA67E3sd7++pscnIGgcUbgNwoGgla8yMM5l/rUikal/13l
+WMgu62JFfQGFGPmv2XmweWf87gjrXkFAx/MRABEBAAG0KlZhbmlyIFJlbGVhc2Ug
+S2V5IDx1bml0MTkzQG5pbnRoZmxvb3Iub3JnPokBOAQTAQIAIgUCUQ1XEAIbAwYL
+CQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQA10g/Hok7xhb1AgAo4b/ZrutYYU2
+2mVpzslGnpR+VcMrMH9SGh6vTU8lbFQBtxEn7Y9af3AWw4l1lIqyk+SwgLHPFZCl
+KwYQfG17Fe5XgnAedQTxKwTPrraxAob8sKy4NyU1vvfxog83vKKU1pbPj/72GIui
+6gJJAohHSugzCLOTnt6Wp8Kb1Ynb/paUVce9vdOfX+Nk2ZRtZ7nsxhFg4cfWGy3p
+/6RXN0MugzZKffRj3dVOndnEsuCL+jwotjhplPuvffKgrGsMGqId1Gc8rQXLsVF9
+XY4K7RfkQSMbm2q4KVZO1KyIvzI/EbgwpYnyuV5CVmSviDYUKrQivkMwTqBHuucR
+xvwJdEeMWrkBDQRRDVcQAQgAx8vtZ9heZBKNTzy+RTRSIiuBCH84whcCi0xCfmv6
+/JcxBwpgElfQ4w5ew1eNBk8uVqj/0YGmWP9ustmtCVr9avEZvbBPBrhNsp0rP3ps
+HMzafNo6/FfdZM1qDbGsqMFSedGtJUdRc0obl+i1dkH/tnB/MVxzjSBbPefrs9oE
+/OCFogwDGTVqzYYzzcqIrr+znoe6LocGfMHriW6k//iYhvLwWgh3fb8zPXGBrDYd
+BnssZFo4h8/vTC+autwd5lJdmgyiASAc/R4ZZdqgxYQcFNe9DTqyyBEfFJEiZg9P
+0VfCQ9COiwyPAtmD1uiV+2LC0VTzPpIkBEAVt1Wpohp8WwARAQABiQEfBBgBAgAJ
+BQJRDVcQAhsMAAoJEANdIPx6JO8YpGwH/iLUoF8MpszhxaN5JUOgF5B7IVxwpl9D
+qqTHsvFFtW6e8SBeXLGJ9dq2M0S8j2mB5lR/3wVpsTTfDkDishZS3tYOZO6Mk2ds
+suR9tuzp8IGNoD1p94qE4gCFxw6ZSTUzdOaVWs4wOMEOspwqdkxKscKkIsuIGBkh
+6KxyINefJc+vtMVVZNY/DXGfHWKRwLuyAnwD04CHKIhlkl16S5WrH33Rv6R/r40h
+UPow+PsKEphzaepmNYloutljWCi/zN1tiMiVMRUsgDqKMNgumg/aziHe5xiVsZ3R
+o5stp4Rf0qqo73xkhIXgMDzfVId2JyLCNh/DfxTc42kwxqSY/sbjPtc=
+=V2eq
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/config/archives/vanir.list.binary b/config/archives/vanir.list.binary
new file mode 100644
index 0000000..e7a1c98
--- /dev/null
+++ b/config/archives/vanir.list.binary
@@ -0,0 +1,2 @@
+deb http://archive.unit193.net/debian/ unstable/
+# deb-src http://archive.unit193.net/debian/ unstable/
diff --git a/config/archives/vanir.list.chroot b/config/archives/vanir.list.chroot
new file mode 100644
index 0000000..e7a1c98
--- /dev/null
+++ b/config/archives/vanir.list.chroot
@@ -0,0 +1,2 @@
+deb http://archive.unit193.net/debian/ unstable/
+# deb-src http://archive.unit193.net/debian/ unstable/
diff --git a/config/build b/config/build
new file mode 100644
index 0000000..9098ab6
--- /dev/null
+++ b/config/build
@@ -0,0 +1,10 @@
+[Image]
+Architecture: i386
+Archive-Areas: main contrib non-free
+Distribution: stretch
+Mirror-Bootstrap: http://ftp.debian.org/debian/
+
+[FIXME]
+Configuration-Version: 4.0.4
+Name: live-image
+Type: iso-hybrid
diff --git a/config/hooks/persistence-menu.binary b/config/hooks/persistence-menu.binary
new file mode 100755
index 0000000..a88f305
--- /dev/null
+++ b/config/hooks/persistence-menu.binary
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+cat >>binary/isolinux/live.cfg <<END
+
+label live-persistence
+ menu label ^Live USB Persistence (check kali.org/prst)
+ linux /live/vmlinuz
+ initrd /live/initrd.img
+ append boot=live noconfig=sudo username=root hostname=kali persistence
+
+label live-encrypted-persistence
+ menu label ^Live USB Encrypted Persistence (check kali.org/prst)
+ linux /live/vmlinuz
+ initrd /live/initrd.img
+ append boot=live persistent=cryptsetup persistence-encryption=luks noconfig=sudo username=root hostname=kali persistence
+
+END
+
diff --git a/config/hooks/sleep.chroot b/config/hooks/sleep.chroot
new file mode 100755
index 0000000..f4c7b74
--- /dev/null
+++ b/config/hooks/sleep.chroot
@@ -0,0 +1,3 @@
+#!/bin/bash
+# sleep for 30 between chroot and binary stages. Helps in WM's such as XFCE and LXDE.
+sleep 30
diff --git a/config/includes.binary/boot/grub/loopback.cfg b/config/includes.binary/boot/grub/loopback.cfg
new file mode 100644
index 0000000..18ad692
--- /dev/null
+++ b/config/includes.binary/boot/grub/loopback.cfg
@@ -0,0 +1,19 @@
+menuentry "Live" {
+ linux /live/vmlinuz boot=live noconfig=sudo username=xubuntu hostname=xubuntu iso-scan/filename=${iso_path} --
+ initrd /live/initrd.img
+}
+menuentry "Live (Failsafe)" {
+ linux /live/vmlinuz boot=live config memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal iso-scan/filename=${iso_path} --
+ initrd /live/initrd.img
+}
+menuentry "Install" {
+ linux /install/vmlinuz vga=788 iso-scan/filename=${iso_path} quiet --
+ initrd /install/initrd.gz
+}
+menuentry "Graphical Install" {
+ linux /install/gtk/vmlinuz video=vesa:ywrap,mtrr vga=788 iso-scan/filename=${iso_path} quiet --
+ initrd /install/gtk/initrd.gz
+}
+menuentry "Test memory" {
+ linux /live/memtest
+}
diff --git a/config/includes.binary/isolinux/splash.png b/config/includes.binary/isolinux/splash.png
new file mode 100644
index 0000000..7738d4e
--- /dev/null
+++ b/config/includes.binary/isolinux/splash.png
Binary files differ
diff --git a/config/includes.binary/isolinux/stdmenu.cfg b/config/includes.binary/isolinux/stdmenu.cfg
new file mode 100644
index 0000000..e6f9b00
--- /dev/null
+++ b/config/includes.binary/isolinux/stdmenu.cfg
@@ -0,0 +1,16 @@
+menu background splash.png
+menu color title * #FFFFFFFF *
+menu color border * #00000000 #00000000 none
+menu color sel * #ffffffff #76a1d0ff *
+menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff *
+menu color tabmsg * #ffffffff #00000000 *
+menu color help 37;40 #ffdddd00 #00000000 none
+menu vshift 16
+menu rows 6
+menu helpmsgrow 10
+menu helpmsgrow 11
+# The command line must be at least one line from the bottom.
+menu cmdlinerow 12
+menu timeoutrow 12
+menu tabmsgrow 14
+menu tabmsg Press ENTER to boot or TAB to edit a menu entry
diff --git a/config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path b/config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path
new file mode 100644
index 0000000..3494d80
--- /dev/null
+++ b/config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path
@@ -0,0 +1,21 @@
+# This file is sourced by Xsession(5), not executed.
+# Add additionnal xdg paths depending on selected desktop session
+
+DEFAULT_XDG_CONFIG_DIRS='/etc/xdg'
+DEFAULT_XDG_DATA_DIRS='/usr/local/share/:/usr/share/'
+if [ -n "$DESKTOP_SESSION" ]; then
+ # readd default if was empty
+ if [ -z "$XDG_CONFIG_DIRS" ]; then
+ XDG_CONFIG_DIRS="$DEFAULT_XDG_CONFIG_DIRS"
+ fi
+ XDG_CONFIG_DIRS="$DEFAULT_XDG_CONFIG_DIRS"/xdg-"$DESKTOP_SESSION":"$XDG_CONFIG_DIRS"
+ export XDG_CONFIG_DIRS
+ # gnome is already added if gnome-session installed
+ if [ "$DESKTOP_SESSION" != "gnome" ]; then
+ if [ -z "$XDG_DATA_DIRS" ]; then
+ XDG_DATA_DIRS="$DEFAULT_XDG_DATA_DIRS"
+ fi
+ XDG_DATA_DIRS=/usr/share/"$DESKTOP_SESSION":"$XDG_DATA_DIRS"
+ export XDG_DATA_DIRS
+ fi
+fi
diff --git a/config/package-lists/desktop.list.chroot b/config/package-lists/desktop.list.chroot
new file mode 100644
index 0000000..c4d9930
--- /dev/null
+++ b/config/package-lists/desktop.list.chroot
@@ -0,0 +1,141 @@
+## Keyring
+vanir-keyring
+
+## Standard toolsets
+apt-transport-https
+command-not-found
+dosfstools
+iputils-tracepath
+lshw
+memtest86+
+mtr-tiny
+netcat-openbsd
+ntfs-3g
+ntpdate
+parted
+pcmciautils
+psmisc
+rsync
+screen
+strace
+tcpdump
+usbutils
+
+rfkill
+wireless-tools
+
+## Standard desktop
+gtk2-engines-pixbuf
+gucharmap
+libnotify-bin
+libpam-gnome-keyring
+lightdm
+lightdm-gtk-greeter
+network-manager-gnome
+pavucontrol
+pm-utils
+xdg-user-dirs
+xdg-user-dirs-gtk
+xdg-utils
+
+## Xfce desktop
+exo-utils
+mousepad
+ristretto
+thunar
+thunar-volman
+tumbler
+xfce4-appfinder
+xfce4-indicator-plugin
+xfce4-notifyd
+xfce4-panel
+xfce4-power-manager
+xfce4-screenshooter
+xfce4-session
+xfce4-settings
+xfce4-terminal
+xfce4-volumed
+#xfce4-whiskermenu-plugin
+xfdesktop4
+xfwm4
+xubuntu-artwork
+xubuntu-default-settings
+xubuntu-docs
+
+## Extras
+#catfish
+evince-gtk
+#file-roller
+iceweasel
+gnome-calculator
+gnome-system-tools
+#gtk-theme-config
+gvfs-backends
+gvfs-fuse
+inxi
+#libreoffice-calc
+#libreoffice-gtk
+#libreoffice-style-tango
+#libreoffice-writer
+#menulibre
+#mugshot
+pastebinit
+#pidgin
+#pidgin-otr
+#simple-scan
+software-properties-gtk
+#system-config-printer
+#icedove
+
+## Extra Xfce
+#gigolo
+#libxfce4ui-utils
+#orage
+#parole
+#thunar-archive-plugin
+#xfburn
+#xfce4-cpugraph-plugin
+#xfce4-dict
+#xfce4-mailwatch-plugin
+#xfce4-netload-plugin
+#xfce4-notes-plugin
+#xfce4-places-plugin
+#xfce4-quicklauncher-plugin
+#xfce4-systemload-plugin
+#xfce4-taskmanager
+#xfce4-verve-plugin
+#xfce4-weather-plugin
+#xfce4-xkb-plugin
+
+## Fonts
+fonts-dejavu-core
+fonts-droid
+fonts-freefont-ttf
+fonts-guru
+fonts-kacst-one
+fonts-lao
+fonts-liberation
+fonts-lklug-sinhala
+fonts-sil-abyssinica
+fonts-sil-padauk
+fonts-thai-tlwg
+fonts-tibetan-machine
+
+## Printing
+cups
+cups-bsd
+cups-client
+cups-filters
+foomatic-db-compressed-ppds
+ghostscript-x
+hplip
+openprinting-ppds
+printer-driver-brlaser
+printer-driver-c2esp
+printer-driver-foo2zjs
+printer-driver-min12xxw
+printer-driver-pnm2ppa
+printer-driver-ptouch
+printer-driver-pxljr
+printer-driver-sag-gdi
+printer-driver-splix
diff --git a/config/package-lists/live.list.chroot b/config/package-lists/live.list.chroot
new file mode 100644
index 0000000..b305ec1
--- /dev/null
+++ b/config/package-lists/live.list.chroot
@@ -0,0 +1,4 @@
+live-boot
+live-config
+live-config-systemd
+dbus
diff --git a/config/package-lists/standard.list.chroot b/config/package-lists/standard.list.chroot
new file mode 100644
index 0000000..f17ce40
--- /dev/null
+++ b/config/package-lists/standard.list.chroot
@@ -0,0 +1 @@
+! Packages Priority standard
diff --git a/docs/desktop.base b/docs/desktop.base
new file mode 100644
index 0000000..753dbe7
--- /dev/null
+++ b/docs/desktop.base
@@ -0,0 +1,62 @@
+acpi-support
+alsa-base
+alsa-utils
+anacron
+apmd
+avahi-daemon
+
+bluez
+bluez-cups
+
+ca-certificates
+
+fonts-dejavu-core
+fonts-freefont-ttf
+fonts-guru
+fonts-kacst-one
+fonts-lao
+fonts-lklug-sinhala
+fonts-sil-abyssinica
+fonts-sil-padauk
+fonts-thai-tlwg
+fonts-tibetan-machine
+
+genisoimage
+inputattach
+laptop-detect
+libnss-mdns
+libpam-systemd
+libsasl2-modules
+libxp6
+memtest86+
+pcmciautils
+
+cups
+cups-bsd
+cups-client
+cups-filters
+foomatic-db-compressed-ppds
+ghostscript-x
+hplip
+openprinting-ppds
+printer-driver-brlaser
+printer-driver-c2esp
+printer-driver-foo2zjs
+printer-driver-min12xxw
+printer-driver-pnm2ppa
+printer-driver-ptouch
+printer-driver-pxljr
+printer-driver-sag-gdi
+printer-driver-splix
+
+rfkill
+wireless-tools
+wpasupplicant
+
+unzip
+xkb-data
+xorg
+zip
+
+policykit-desktop-privileges
+ttf-ubuntu-font-family
diff --git a/docs/ubuntu.base b/docs/ubuntu.base
new file mode 100644
index 0000000..9d18d72
--- /dev/null
+++ b/docs/ubuntu.base
@@ -0,0 +1,36 @@
+apparmor
+busybox-static
+command-not-found
+console-setup
+debconf-i18n
+dosfstools
+ed
+eject
+hdparm
+hfsutils
+initramfs-tools
+iputils-tracepath
+irqbalance
+kbd
+lsb-release
+lshw
+ltrace
+mtr-tiny
+netcat-openbsd
+ntfs-3g
+ntpdate
+parted
+plymouth
+popularity-contest
+ppp
+pppconfig
+pppoeconf
+psmisc
+python3
+resolvconf
+rsync
+strace
+sudo
+tcpdump
+ufw
+usbutils
diff --git a/docs/xubuntu-core.base b/docs/xubuntu-core.base
new file mode 100644
index 0000000..ae8146b
--- /dev/null
+++ b/docs/xubuntu-core.base
@@ -0,0 +1,40 @@
+avahi-autoipd
+dmz-cursor-theme
+doc-base
+gcc
+gtk2-engines-pixbuf
+gucharmap
+libasound2-plugins
+libnotify-bin
+libpam-gnome-keyring
+lightdm
+lightdm-gtk-greeter
+light-locker
+make
+network-manager-gnome
+pavucontrol
+pm-utils
+software-properties-gtk
+thunar
+thunar-volman
+xdg-user-dirs
+xdg-user-dirs-gtk
+xdg-utils
+xfce4-appfinder
+xfce4-indicator-plugin
+xfce4-notifyd
+xfce4-panel
+xfce4-power-manager
+xfce4-screenshooter
+xfce4-session
+xfce4-settings
+xfce4-terminal
+xfce4-volumed
+xfce4-whiskermenu-plugin
+xfdesktop4
+xfwm4
+xterm
+xubuntu-artwork
+xubuntu-core
+xubuntu-default-settings
+xubuntu-docs
diff --git a/docs/xubuntu-desktop.base b/docs/xubuntu-desktop.base
new file mode 100644
index 0000000..494d7e0
--- /dev/null
+++ b/docs/xubuntu-desktop.base
@@ -0,0 +1,69 @@
+apt-offline
+blueman
+brltty
+brltty-x11
+catfish
+desktop-file-utils
+espeak
+evince-gtk
+file-roller
+iceweasel
+fonts-droid
+fonts-liberation
+fonts-nanum
+fonts-opensymbol
+gigolo
+gmusicbrowser
+gnome-accessibility-themes
+gnome-calculator
+gnome-mines
+gnome-sudoku
+gnome-system-tools
+gstreamer0.10-plugins-base-apps
+gstreamer0.10-pulseaudio
+gtk-theme-config
+gvfs-backends
+gvfs-fuse
+im-config
+inxi
+libreoffice-calc
+libreoffice-gtk
+libreoffice-style-tango
+libreoffice-writer
+libxfce4ui-utils
+menulibre
+mousepad
+mugshot
+network-manager-pptp
+network-manager-pptp-gnome
+orage
+parole
+pastebinit
+pidgin
+pidgin-otr
+ristretto
+simple-scan
+speech-dispatcher
+system-config-printer-gnome
+thunar-archive-plugin
+thunar-media-tags-plugin
+icedove
+transmission-gtk
+tumbler
+update-notifier
+xcursor-themes
+xfburn
+xfce4-cpugraph-plugin
+xfce4-dict
+xfce4-mailwatch-plugin
+xfce4-netload-plugin
+xfce4-notes-plugin
+xfce4-places-plugin
+xfce4-quicklauncher-plugin
+xfce4-systemload-plugin
+xfce4-taskmanager
+xfce4-verve-plugin
+xfce4-weather-plugin
+xfce4-xkb-plugin
+xubuntu-desktop
+zenity