make livecd.sh not fail if e2fsck returns non-zero (which is always the case with genext2fs images due to bug 583317)

ubuntu/precise
Oliver Grawert 15 years ago
parent 3ec63f12c1
commit 93ab847b80

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (1.125) UNRELEASED; urgency=low
* make livecd.sh not fail if e2fsck returns non-zero (which is always the
case with genext2fs images due to bug 583317)
-- Oliver Grawert <ogra@ubuntu.com> Mon, 28 Jun 2010 16:25:51 +0200
livecd-rootfs (1.124) maverick; urgency=low
* BuildLiveCD: update livecd chroot at start of run, for freshest

@ -687,7 +687,7 @@ Pin-Priority: 550
tune2fs -j livecd.${FSS}.ext2
mv livecd.${FSS}.ext2 livecd.${FSS}.ext3
# temporary workaround for LP: #583317 with ext3 images
e2fsck -fy livecd.${FSS}.ext3 > /dev/null 2>&1
e2fsck -fy livecd.${FSS}.ext3 || true
fi
# LTSP chroot building (only in 32bit and for Edubuntu (DVD))

Loading…
Cancel
Save