diff --git a/debian/changelog b/debian/changelog index b57e608b..0e0d9dd3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (1.160) natty; urgency=critical + + * Emergency hack to remove ubiquity-slideshow-* on armel due to python-webkit + causing a segfault (Works aroud LP: #727368) + + -- Michael Casadevall Wed, 02 Mar 2011 11:33:51 -0800 + livecd-rootfs (1.159) natty; urgency=low * create an empty swapfile on ext2/3 images by default, we care for use diff --git a/livecd.sh b/livecd.sh index 3ba1dc84..7eb83e1e 100755 --- a/livecd.sh +++ b/livecd.sh @@ -577,6 +577,14 @@ Pin-Priority: 900 chroot ${ROOT} dpkg-query -W --showformat='${Package} ${Version}\n' \ > livecd.${FSS}.manifest + # HACK! HACK! HACK! + # Remove ubiquity-slideshow as webkit is completely hosed on armel + if [ "$TARGETARCH" = "armel" ]; then + checkpoint "Removing ubiquity-slideshow" + chroot ${ROOT} apt-get -y --purge remove ubiquity-slideshow-* \ +