diff options
author | Koen Kooi <koen@openembedded.org> | 2008-03-19 10:31:59 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-03-19 10:31:59 +0000 |
commit | 45a148b7496883244b04fc5dc0fe6ab30629cf36 (patch) | |
tree | bc03d1c72f7c3d5ccb68ecd432c4b992f2153ed9 | |
parent | eaab57c4afa5ca37d595710cf70c86d229b8dce0 (diff) |
rootfs_{deb,ipk}.bbclass: the o-hand dudes went overboard with sed, and opkg-native overwrites our u-a-native, so we need to set both IPKG_OFFLINE_ROOT *and* OPKG_OFFLINE_ROOT
-rw-r--r-- | classes/rootfs_deb.bbclass | 1 | ||||
-rw-r--r-- | classes/rootfs_ipk.bbclass | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/classes/rootfs_deb.bbclass b/classes/rootfs_deb.bbclass index c59c75e1e5..3a69b82010 100644 --- a/classes/rootfs_deb.bbclass +++ b/classes/rootfs_deb.bbclass @@ -46,6 +46,7 @@ fakeroot rootfs_deb_do_rootfs () { export D=${IMAGE_ROOTFS} export OFFLINE_ROOT=${IMAGE_ROOTFS} export IPKG_OFFLINE_ROOT=${IMAGE_ROOTFS} + export OPKG_OFFLINE_ROOT=${IPKG_OFFLINE_ROOT} mkdir -p ${IMAGE_ROOTFS}/var/lib/dpkg/alternatives diff --git a/classes/rootfs_ipk.bbclass b/classes/rootfs_ipk.bbclass index 4954fb2c44..c8e068f739 100644 --- a/classes/rootfs_ipk.bbclass +++ b/classes/rootfs_ipk.bbclass @@ -39,6 +39,8 @@ fakeroot rootfs_ipk_do_rootfs () { export D=${IMAGE_ROOTFS} export OFFLINE_ROOT=${IMAGE_ROOTFS} export IPKG_OFFLINE_ROOT=${IMAGE_ROOTFS} + export OPKG_OFFLINE_ROOT=${IPKG_OFFLINE_ROOT} + mkdir -p ${IMAGE_ROOTFS}${sysconfdir}/opkg/ grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}${sysconfdir}/opkg/arch.conf |