]> code.ossystems Code Review - openembedded-core.git/commitdiff
package_ipk.bbclass: switched to opkg
authorMarcin Juszkiewicz <hrw@openedhand.com>
Mon, 17 Mar 2008 13:18:07 +0000 (13:18 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Mon, 17 Mar 2008 13:18:07 +0000 (13:18 +0000)
Signed-off-by: Marcin Juszkiewicz <hrw@openedhand.com>
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4025 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/package_ipk.bbclass

index abb679830db1caca3771f156decf9b4e2237a7c6..4f669aba8e9c90434bb6572620c4da1b42f7a32f 100644 (file)
@@ -1,11 +1,10 @@
 inherit package
 
-BOOTSTRAP_EXTRA_RDEPENDS += "ipkg-collateral ipkg ipkg-link"
-DISTRO_EXTRA_RDEPENDS += "ipkg-collateral ipkg ipkg-link"
+DISTRO_EXTRA_RDEPENDS += "opkg-collateral opkg"
 IMAGE_PKGTYPE ?= "ipk"
 
-IPKGCONF_TARGET = "${STAGING_ETCDIR_NATIVE}/ipkg.conf"
-IPKGCONF_SDK =  "${STAGING_ETCDIR_NATIVE}/ipkg-sdk.conf"
+IPKGCONF_TARGET = "${STAGING_ETCDIR_NATIVE}/opkg.conf"
+IPKGCONF_SDK =  "${STAGING_ETCDIR_NATIVE}/opkg-sdk.conf"
 
 python package_ipk_fn () {
        from bb import data
@@ -57,8 +56,8 @@ python package_ipk_install () {
                f = open(os.path.join(tmpdir, "stamps", "IPK_PACKAGE_INDEX_CLEAN"),"w")
                f.close()
 
-       ret = os.system('ipkg-cl  -o %s -f %s update' % (rootfs, conffile))
-       ret = os.system('ipkg-cl  -o %s -f %s install %s' % (rootfs, conffile, pkgfn))
+       ret = os.system('opkg-cl  -o %s -f %s update' % (rootfs, conffile))
+       ret = os.system('opkg-cl  -o %s -f %s install %s' % (rootfs, conffile, pkgfn))
        if (ret != 0 ):
                raise bb.build.FuncFailed
 }