mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-15 04:41:30 +00:00
enforce installation of only suitable header packages for the respective subarch on armel instead of blindly installing all armel headers (LP: #600478)
This commit is contained in:
parent
c41b12e7cc
commit
b1aae249f8
7
debian/changelog
vendored
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
|
livecd-rootfs (1.150) maverick; urgency=low
|
||||||
|
|
||||||
* Set GDM's default session to une-efl on ubuntu-netbook armel+dove.
|
* 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
|
for i in `comm -3 livecd.${FSS}.manifest-headers livecd.${FSS}.manifest-headers-full`; do
|
||||||
HEADERMETA="$HEADERMETA $i"
|
HEADERMETA="$HEADERMETA $i"
|
||||||
done
|
done
|
||||||
|
case $TARGETARCH in
|
||||||
|
armel)
|
||||||
|
HEADERMETA=linux-headers-${SUBARCH}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
rm -f livecd.${FSS}.manifest-headers livecd.${FSS}.manifest-headers-full
|
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 remove $HEADERPACKAGES </dev/null || true
|
||||||
chroot ${ROOT} apt-get -y --purge install $HEADERMETA </dev/null || true
|
chroot ${ROOT} apt-get -y --purge install $HEADERMETA </dev/null || true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user