enforce installation of only suitable header packages for the respective subarch on armel instead of blindly installing all armel headers (LP: #600478)

ubuntu/precise
Oliver Grawert 14 years ago
parent c41b12e7cc
commit b1aae249f8

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (1.151) UNRELEASED; urgency=low
* enforce installation of only suitable header packages for the respective
subarch on armel instead of blindly installing all armel headers (LP: #600478)
-- Oliver Grawert <ogra@ubuntu.com> Fri, 24 Sep 2010 14:51:53 +0200
livecd-rootfs (1.150) maverick; urgency=low
* Set GDM's default session to une-efl on ubuntu-netbook armel+dove.

@ -526,6 +526,11 @@ Pin-Priority: 900
for i in `comm -3 livecd.${FSS}.manifest-headers livecd.${FSS}.manifest-headers-full`; do
HEADERMETA="$HEADERMETA $i"
done
case $TARGETARCH in
armel)
HEADERMETA=linux-headers-${SUBARCH}
;;
esac
rm -f livecd.${FSS}.manifest-headers livecd.${FSS}.manifest-headers-full
chroot ${ROOT} apt-get -y --purge remove $HEADERPACKAGES </dev/null || true
chroot ${ROOT} apt-get -y --purge install $HEADERMETA </dev/null || true

Loading…
Cancel
Save