rootfs_deb: Update IMAGE_ROOTFS variable usage to be consistent
authorLynn Lin <Lin_Lynn@emc.com>
Sun, 21 Jun 2009 10:15:06 +0000 (18:15 +0800)
committerTom Rini <trini@embeddedalley.com>
Sun, 21 Jun 2009 18:55:19 +0000 (14:55 -0400)
update IMAGE_ROOTFS variable to fix inconsistent use of IMAGE_ROOTFS variable
content in by apt-native after the changes introducd in
2343808f7386cbd4c7b43f1b24e65e173f5ddf15.  This commit changed IMAGE_ROOTFS
from "${TMPDIR}/rootfs" to "${TMPDIR}/rootfs/${PN}" and that caused
IMAGE_ROOTFS to expand to ${TMPDIR}/rootfs/apt-native in apt.conf.sample,
however rootfs_deb.class uses apt.conf.sample to generate apt-rootfs.conf and
here here IMAGE_ROOTFS is different from that in apt-native package.

Acked-by: Tom Rini <trini@embeddedaley.com>
classes/rootfs_deb.bbclass

index 8222066..dc2b2cb 100644 (file)
@@ -44,6 +44,8 @@ fakeroot rootfs_deb_do_rootfs () {
 
        cat "${STAGING_ETCDIR_NATIVE}/apt/apt.conf.sample" \
                | sed -e 's#Architecture ".*";#Architecture "${DPKG_ARCH}";#' \
+               | sed -e 's#status ".*";#status "${IMAGE_ROOTFS}/var/dpkg/status";#' \ 
+               | sed -e 's#DPkg::Options {".*"};#DPkg::Options {"--root=${IMAGE_ROOTFS}";"--admindir=${IMAGE_ROOTFS}/var/dpkg";"--force-all";"--no-debsig"};#' \
                > "${STAGING_ETCDIR_NATIVE}/apt/apt-rootfs.conf"
 
        export APT_CONFIG="${STAGING_ETCDIR_NATIVE}/apt/apt-rootfs.conf"