armel+imx51 back to the proper metapackage name, enable universe for armel+dove, drop armel fallback, clean some trailing whitespace in the armel subarch case statement

This commit is contained in:
Oliver Grawert 2009-08-21 19:37:57 +02:00
parent e88242ed21
commit 5e9195a1b1
2 changed files with 17 additions and 5 deletions

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
livecd-rootfs (0.92) UNRELEASED; urgency=low
* change armel+imx51 back to the proper metapackage name
* enable universe for armel+dove build
* drop armel fallback, we want to fail officially if no armel subarch is set
* clean some trailing whitespace in the armel subarch case statement
-- Oliver Grawert <ogra@ubuntu.com> Fri, 21 Aug 2009 19:33:15 +0200
livecd-rootfs (0.91) karmic; urgency=low
[ Steve Kowalik ]

View File

@ -325,15 +325,18 @@ 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)
case "$SUBARCH" in
armel)
case "$SUBARCH" in
imx51)
LIST="$LIST linux-babbage"
LIST="$LIST linux-imx51"
# temporarily enable universe until kernel is in main
COMP="main restricted universe"
;;
dove)
LIST="$LIST linux-dove"
# temporarily enable universe until kernel is in main
COMP="main restricted universe"
;;
dove) LIST="$LIST linux-dove";;
*) LIST="$LIST linux-babbage";;
esac;;
*) echo "Unknown architecture: no kernel."; exit 1;;
esac