From: Khem Raj Date: Mon, 24 Jan 2011 20:03:10 +0000 (-0800) Subject: classes/package_ipk.bbclass,classes/sourceipk.bbclass: Use opkg-utils-native instead... X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22399a2c45ce87450240474713ea2f50af2f6b8f;p=openembedded.git classes/package_ipk.bbclass,classes/sourceipk.bbclass: Use opkg-utils-native instead of ipkg-utils-native Signed-off-by: Khem Raj Acked-by: Koen Kooi Acked-by: Graham Gower --- diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass index 97e5cd86ae..fea678d5f4 100644 --- a/classes/package_ipk.bbclass +++ b/classes/package_ipk.bbclass @@ -70,7 +70,7 @@ do_package_update_index_ipk[lockfiles] = "${DEPLOY_DIR_IPK}.lock" do_package_update_index_ipk[nostamp] = "1" do_package_update_index_ipk[recrdeptask] += "do_package_write_ipk" do_package_update_index_ipk[recrdeptask] += "do_package_write_ipk" -do_package_update_index_ipk[depends] += "ipkg-utils-native:do_populate_sysroot" +do_package_update_index_ipk[depends] += "opkg-utils-native:do_populate_sysroot" # # Update the Packages index files in ${DEPLOY_DIR_IPK} @@ -315,7 +315,7 @@ python do_package_ipk () { python () { if bb.data.getVar('PACKAGES', d, True) != '': deps = (bb.data.getVarFlag('do_package_write_ipk', 'depends', d) or "").split() - deps.append('ipkg-utils-native:do_populate_sysroot') + deps.append('opkg-utils-native:do_populate_sysroot') deps.append('fakeroot-native:do_populate_sysroot') bb.data.setVarFlag('do_package_write_ipk', 'depends', " ".join(deps), d) } diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass index 17a7cdd9d7..b443ef6d01 100644 --- a/classes/sourceipk.bbclass +++ b/classes/sourceipk.bbclass @@ -34,9 +34,9 @@ # Need to figure out how to use ipkg-build in this class. # I tried adding it as a dependency for the do_create_srcipk # task using: -# do_create_srcipk[depends] += "ipkg-utils-native:do_populate_sysroot" +# do_create_srcipk[depends] += "opkg-utils-native:do_populate_sysroot" # But then there is a circular dependency between sourcipk.bbclass and -# ipkg-utils-native. Until I can figure out how to resolve this +# opkg-utils-native. Until I can figure out how to resolve this # circular dependency I am extracting the needed pieces from ipkg-build # into this class and building the source ipk myself.