diff --git a/debian/changelog b/debian/changelog index 55185c14..1b806a2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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} diff --git a/livecd.sh b/livecd.sh index 68107cdf..a1373cfa 100755 --- a/livecd.sh +++ b/livecd.sh @@ -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"