Import patches-unapplied version 0.89 to ubuntu/karmic

Imported using git-ubuntu import.

Changelog parent: 4b16ae8f92b1e71ce78dd89c19190cd7128c2ccd

New changelog entries:
  [ Michael Casadevall ]
  * Move armel to subarchitectures so we can support dove .
  * Made armel with no subarch default to imx51.
  [ Steve Kowalik ]
  * livecd.sh: Stop building UNR from universe.
This commit is contained in:
Steve Kowalik 2009-08-05 14:20:37 +01:00 committed by usd-importer
parent 4b16ae8f92
commit 9276498a1a
2 changed files with 17 additions and 2 deletions

11
debian/changelog vendored
View File

@ -1,3 +1,14 @@
livecd-rootfs (0.89) karmic; urgency=low
[ Michael Casadevall ]
* Move armel to subarchitectures so we can support dove .
* Made armel with no subarch default to imx51.
[ Steve Kowalik ]
* livecd.sh: Stop building UNR from universe.
-- Steve Kowalik <stevenk@ubuntu.com> Wed, 05 Aug 2009 14:20:37 +0100
livecd-rootfs (0.88) karmic; urgency=low
[ Adam Conrad ]

View File

@ -210,7 +210,6 @@ Flags: seen
ubuntu-netbook-remix)
LIST="$LIST minimal^ standard^ ubuntu-netbook-remix^"
LIVELIST="unr-live^ casper ubiquity"
COMP="main restricted universe"
;;
mythbuntu)
LIST="$LIST minimal^ standard^ mythbuntu-desktop^ mythbuntu-desktop"
@ -326,7 +325,12 @@ link_in_boot = $link_in_boot
hppa) LIST="$LIST linux-hppa32 linux-hppa64";;
powerpc) LIST="$LIST linux-powerpc linux-powerpc64-smp";;
sparc*) LIST="$LIST linux-sparc64";;
armel) LIST="$LIST linux-imx51";;
armel)
case "$SUBARCH" in
imx51) LIST="$LIST linux-imx51";;
dove) LIST="$LIST linux-dove";;
*) LIST="$LIST linux-imx51";;
esac;;
*) echo "Unknown architecture: no kernel."; exit 1;;
esac