Add support for kubuntu-mobile

ubuntu/precise
Jonathan Riddell 15 years ago
commit 4dc9d5f565

@ -69,9 +69,9 @@ if [ "$new_suite" = "yes" ] && [ "$old_suite" = "yes" ]; then
exit 1 exit 1
fi fi
if (( $# == 0 )) || [ "X$1" = "Xall" ]; then if (( $# == 0 )) || [ "X$1" = "Xall" ]; then
set -- ubuntu kubuntu kubuntu-netbook edubuntu xubuntu mythbuntu base set -- ubuntu kubuntu kubuntu-mobile kubuntu-netbook edubuntu xubuntu mythbuntu base
if [ "$ARCH" = "i386" ]; then if [ "$ARCH" = "i386" ]; then
set -- ubuntu ubuntu-dvd ubuntu-lpia ubuntu-netbook kubuntu kubuntu-dvd kubuntu-netbook edubuntu edubuntu-dvd xubuntu mythbuntu base set -- ubuntu ubuntu-dvd ubuntu-lpia ubuntu-netbook kubuntu kubuntu-dvd kubuntu-mobile kubuntu-netbook edubuntu edubuntu-dvd xubuntu mythbuntu base
fi fi
fi fi
@ -82,7 +82,7 @@ esac
for arg in "$@"; do for arg in "$@"; do
case "$arg" in case "$arg" in
*ubuntu|*ubuntu-dvd|kubuntu-netbook|ubuntu-lpia|ubuntu-mid|ubuntu-umpc|ubuntu-mobile|ubuntu-netbook|ubuntu-moblin-remix|mythbuntu|base|tocd) ;; *ubuntu|*ubuntu-dvd|kubuntu-mobile|kubuntu-netbook|ubuntu-lpia|ubuntu-mid|ubuntu-umpc|ubuntu-mobile|ubuntu-netbook|ubuntu-moblin-remix|mythbuntu|base|tocd) ;;
*) *)
echo "bad project: $arg" >&2 echo "bad project: $arg" >&2
exit 2 exit 2

6
debian/changelog vendored

@ -1,3 +1,9 @@
livecd-rootfs (1.147) maverick; urgency=low
* Add support for kubuntu-mobile
-- Emmet Hikory <persia@ubuntu.com> Thu, 26 Aug 2010 13:29:12 +0900
livecd-rootfs (1.146) maverick; urgency=low livecd-rootfs (1.146) maverick; urgency=low
* Add a series of checkpoints where the current time is logged. * Add a series of checkpoints where the current time is logged.

@ -196,9 +196,9 @@ esac; done;
shift $((OPTIND-1)) shift $((OPTIND-1))
if (( $# == 0 )) || [ "X$1" = "Xall" ]; then if (( $# == 0 )) || [ "X$1" = "Xall" ]; then
set -- ubuntu kubuntu kubuntu-netbook edubuntu xubuntu mythbuntu gobuntu base set -- ubuntu kubuntu kubuntu-mobile kubuntu-netbook edubuntu xubuntu mythbuntu gobuntu base
if [ "$ARCH" = "i386" ]; then if [ "$ARCH" = "i386" ]; then
set -- ubuntu ubuntu-dvd kubuntu kubuntu-dvd kubuntu-netbook edubuntu edubuntu-dvd mythbuntu xubuntu gobuntu base set -- ubuntu ubuntu-dvd kubuntu kubuntu-dvd kubuntu-mobile kubuntu-netbook edubuntu edubuntu-dvd mythbuntu xubuntu gobuntu base
fi fi
fi fi
@ -210,7 +210,7 @@ fi
for arg in "$@"; do for arg in "$@"; do
case "$arg" in case "$arg" in
ubuntu|ubuntu-dvd|ubuntu-lpia|edubuntu|edubuntu-dvd|kubuntu|kubuntu-dvd|kubuntu-netbook|xubuntu|mythbuntu|gobuntu|ubuntu-mid|ubuntu-netbook|ubuntu-moblin-remix|base|tocd) ubuntu|ubuntu-dvd|ubuntu-lpia|edubuntu|edubuntu-dvd|kubuntu|kubuntu-dvd|kubuntu-mobile|kubuntu-netbook|xubuntu|mythbuntu|gobuntu|ubuntu-mid|ubuntu-netbook|ubuntu-moblin-remix|base|tocd)
;; ;;
*) *)
echo bad name >&2; echo bad name >&2;
@ -258,6 +258,10 @@ Flags: seen
LIST="$LIST minimal^ standard^ kubuntu-desktop^" LIST="$LIST minimal^ standard^ kubuntu-desktop^"
LIVELIST="kubuntu-live^ laptop-detect $LIVE_BOOT_SCRIPTS" LIVELIST="kubuntu-live^ laptop-detect $LIVE_BOOT_SCRIPTS"
;; ;;
kubuntu-mobile)
LIST="$LIST minimal^ standard^ kubuntu-mobile^"
LIVELIST="language-support-en kubuntu-mobile-live^ laptop-detect $LIVE_BOOT_SCRIPTS"
;;
kubuntu-netbook) kubuntu-netbook)
LIST="$LIST minimal^ standard^ kubuntu-netbook^" LIST="$LIST minimal^ standard^ kubuntu-netbook^"
LIVELIST="language-support-en kubuntu-netbook-live^ laptop-detect $LIVE_BOOT_SCRIPTS" LIVELIST="language-support-en kubuntu-netbook-live^ laptop-detect $LIVE_BOOT_SCRIPTS"
@ -686,7 +690,9 @@ Pin-Priority: 550
esac esac
# No point keeping Gnome icon cache around for Kubuntu # No point keeping Gnome icon cache around for Kubuntu
if [ "$FS" = "kubuntu" ] || [ "$FS" = "kubuntu-netbook" ]; then if [ "$FS" = "kubuntu" ] || \
[ "$FS" = "kubuntu-netbook" ] || \
[ "$FS" = "kubuntu-mobile"] ; then
rm -f ${ROOT}/usr/share/icons/*/icon-theme.cache rm -f ${ROOT}/usr/share/icons/*/icon-theme.cache
fi fi

Loading…
Cancel
Save