diff --git a/debian/changelog b/debian/changelog index a27cc5e1..21bd7cec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,14 @@ livecd-rootfs (0.27) UNRELEASED; urgency=low + [ Adam Conrad ] * Copy the kernel out of the livefs as well, so we have one that matches. * Enable rudimentary support for squashfs filesystems, initially enabling it on the primary architectures only (powerpc, i386, amd64) - -- Adam Conrad Sat, 7 Jan 2006 00:25:10 +1100 + [ LaMont Jones ] + * umount /var/{run,lock} + + -- LaMont Jones Thu, 26 Jan 2006 20:57:04 -0700 livecd-rootfs (0.26) hoary-cat; urgency=low diff --git a/livecd.sh b/livecd.sh index 2e92e488..d9d13988 100755 --- a/livecd.sh +++ b/livecd.sh @@ -10,7 +10,7 @@ SQUASH_ARCHES="i386 amd64 powerpc" CLOOP_ARCHES="ia64 hppa sparc" cleanup() { - for mnt in $MOUNTS ${ROOT}lib/modules/*/volatile; do + for mnt in $MOUNTS ${ROOT}lib/modules/*/volatile ${ROOT}var/{lock,run}; do umount $mnt || true done