From cf4aaa47ceea807cb8a1b9645fc39fc0e75cd512 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 15 Jun 2011 14:40:01 +0100 Subject: [PATCH] Set --chroot-filesystem option if IMAGEFORMAT is ext2 or ext3. --- debian/changelog | 1 + live-build/auto/config | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ecee78cc..2a93e0a6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ livecd-rootfs (2.5) UNRELEASED; urgency=low * Pass correct IMAGEFORMAT through to live-build from BuildLiveCD. * Add Lubuntu support. + * Set --chroot-filesystem option if IMAGEFORMAT is ext2 or ext3. -- Colin Watson Wed, 15 Jun 2011 10:21:08 +0100 diff --git a/live-build/auto/config b/live-build/auto/config index 6251ea52..6a3d3151 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -50,7 +50,7 @@ BINARY_REMOVE_LINUX=: case $IMAGEFORMAT in ext2|ext3) - OPTS="${OPTS:+$OPTS }--initramfs none" + OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT" add_package live jasper ;;