Ubuntu Pastebin

Paste from shadeslayer at Thu, 26 Nov 2015 14:25:44 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/usr/bin/env bash
set -x
set -e

rm -rf customizations
rm -f customizations.tar.gz

apt install livecd-rootfs
cp -aR /usr/share/livecd-rootfs/live-build/auto .

PROJECT="ubuntu-touch" ARCH="armhf" lb config -a armhf  --mode ubuntu --distribution vivid --bootstrap-keyring ubuntu-keyring --binary-images none --memtest none --source false --build-with-chroot false --parent-archive-areas "main multiverse restricted universe" --apt-source-archives false --linux-flavours none --initsystem none --bootloader none --initramfs-compression lzma --bootappend-live hostname=ubuntu-phablet username=ubuntu --initramfs none --chroot-filesystem plain --compression gzip --system normal --zsync false --linux-packages=none --initramfs=none --apt-recommends true $@

wget http://people.ubuntu.com/~rohangarg/customizations.tar.gz
tar xvf customizations.tar.gz

cp -aR customizations/* config/
Download as text