From ee1909ade63e913b13e4d78d701f1f329308e7be Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 1 May 2013 10:51:50 -0700 Subject: [PATCH] live-build/auto/config: Add basic ubuntu-touch enablement (based on patch from Oliver Grawert, for which thanks). --- debian/changelog | 7 +++++++ live-build/auto/config | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/debian/changelog b/debian/changelog index 24b98d3a..3e51932f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.124ubuntu1) UNRELEASED; urgency=low + + * live-build/auto/config: Add basic ubuntu-touch enablement (based on + patch from Oliver Grawert, for which thanks). + + -- Colin Watson Wed, 01 May 2013 10:51:07 -0700 + livecd-rootfs (2.124) raring; urgency=low * drop the namespace in mount options of ubuntu-touch-android.sh, diff --git a/live-build/auto/config b/live-build/auto/config index 788e4fc3..29d08df0 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -260,6 +260,11 @@ case $PROJECT in OPTS="${OPTS:+$OPTS }--bootstrap-flavour=minimal" ;; + ubuntu-touch) + add_task install minimal ubuntu-touch + COMPONENTS='main restricted universe' + ;; + *) echo "unknown project $PROJECT" >&2 exit 2