summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs_ipk.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-07-15 12:57:10 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-07-15 12:57:10 +0100
commitefd00048e33f5ef1245168dc08309e4f1040560e (patch)
tree9556cc3fbd93ed805145286c711e986e5dbc398b /meta/classes/rootfs_ipk.bbclass
parenta0a195df285c2ca9005d1e51a9a2581f1e015ee6 (diff)
downloadpoky-efd00048e33f5ef1245168dc08309e4f1040560e.tar.gz
rootfs_ipk.bbclass: Don't generate the arch.conf file, provide this as a packaged file in future
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/rootfs_ipk.bbclass')
-rw-r--r--meta/classes/rootfs_ipk.bbclass7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass
index 66d3712b8d..bf18667f7a 100644
--- a/meta/classes/rootfs_ipk.bbclass
+++ b/meta/classes/rootfs_ipk.bbclass
@@ -5,7 +5,7 @@
5# See image.bbclass for a usage of this. 5# See image.bbclass for a usage of this.
6# 6#
7 7
8ROOTFS_PKGMANAGE = "opkg opkg-collateral" 8ROOTFS_PKGMANAGE = "opkg opkg-collateral ${EXTRAOPKGCONFIG}"
9ROOTFS_PKGMANAGE_BOOTSTRAP = "run-postinsts" 9ROOTFS_PKGMANAGE_BOOTSTRAP = "run-postinsts"
10 10
11do_rootfs[depends] += "opkg-native:do_populate_staging opkg-utils-native:do_populate_staging" 11do_rootfs[depends] += "opkg-native:do_populate_staging opkg-utils-native:do_populate_staging"
@@ -51,8 +51,9 @@ fakeroot rootfs_ipk_do_rootfs () {
51 export IPKG_OFFLINE_ROOT=${IMAGE_ROOTFS} 51 export IPKG_OFFLINE_ROOT=${IMAGE_ROOTFS}
52 export OPKG_OFFLINE_ROOT=${IPKG_OFFLINE_ROOT} 52 export OPKG_OFFLINE_ROOT=${IPKG_OFFLINE_ROOT}
53 53
54 mkdir -p ${IMAGE_ROOTFS}/etc/opkg/ 54 # Distro specific packages should create this
55 grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}/etc/opkg/arch.conf 55 #mkdir -p ${IMAGE_ROOTFS}/etc/opkg/
56 #grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}/etc/opkg/arch.conf
56 57
57 ${OPKG_POSTPROCESS_COMMANDS} 58 ${OPKG_POSTPROCESS_COMMANDS}
58 ${ROOTFS_POSTINSTALL_COMMAND} 59 ${ROOTFS_POSTINSTALL_COMMAND}