xubuntu support in livecd.sh

ubuntu/precise
Adam Conrad 19 years ago
parent 697731a595
commit d09dc59f2b

1
debian/changelog vendored

@ -9,6 +9,7 @@ livecd-rootfs (0.27) UNRELEASED; urgency=low
* Use --print-installation-architecture instead of --print-architecture
* Special-case kubuntu cloops to be slightly larger, so we don't overflow.
* Make sparc use archive.ubuntu.com, it's no longer a ports arch.
* Add xubuntu support to livecd.sh.
[ LaMont Jones ]
* umount /var/{run,lock}

@ -99,12 +99,12 @@ esac; done;
shift $((OPTIND-1))
if (( $# == 0 )) || [ "X$1" = "Xall" ]; then
set -- ubuntu kubuntu base
set -- ubuntu kubuntu edubuntu xubuntu base
fi
for arg in "$@"; do
case "$arg" in
ubuntu|edubuntu|kubuntu|base|tocd)
ubuntu|edubuntu|kubuntu|xubuntu|base|tocd)
;;
*)
echo bad name >&2;
@ -145,6 +145,10 @@ Flags: seen
LIST="$LIST ubuntu-base edubuntu-desktop"
LIVELIST="edubuntu-live xresprobe laptop-detect casper"
;;
xubuntu)
LIST="$LIST ubuntu-base xubuntu-desktop"
LIVELIST="xubuntu-live xresprobe laptop-detect casper"
;;
base)
LIST="$LIST ubuntu-base"
LIVELIST="casper"

Loading…
Cancel
Save