From 8fc18e67504db5b6df3fdd239c6187a71af52656 Mon Sep 17 00:00:00 2001 From: Laurentiu Palcu Date: Tue, 18 Mar 2014 11:09:56 +0000 Subject: rootfs.py, sdk.py: adjust/create the wrappers for creating installed packages list Since we created a new PkgsList object that will deal with listing the installed packages in a rootfs, use the new class both for images and SDKs in the wrapper functions. The old list_installed_packages() wrapper listed only the packages inside an image rootfs. It didn't deal with target/host SDK rootfs's. Signed-off-by: Laurentiu Palcu Signed-off-by: Richard Purdie --- meta/lib/oe/sdk.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'meta/lib/oe/sdk.py') diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py index 01a1807160..564319965d 100644 --- a/meta/lib/oe/sdk.py +++ b/meta/lib/oe/sdk.py @@ -289,6 +289,24 @@ class DpkgSdk(Sdk): bb.utils.remove(os.path.join(self.sdk_output, "var"), True) +def sdk_list_installed_packages(d, target, format=None, rootfs_dir=None): + if rootfs_dir is None: + sdk_output = d.getVar('SDK_OUTPUT', True) + target_path = d.getVar('SDKTARGETSYSROOT', True).strip('/') + + rootfs_dir = [sdk_output, os.path.join(sdk_output, target_path)][target is True] + + img_type = d.getVar('IMAGE_PKGTYPE', True) + if img_type == "rpm": + arch_var = ["SDK_PACKAGE_ARCHS", None][target is True] + os_var = ["SDK_OS", None][target is True] + return RpmPkgsList(d, rootfs_dir, arch_var, os_var).list(format) + elif img_type == "ipk": + conf_file_var = ["IPKGCONF_SDK", "IPKGCONF_Target"][target is True] + return OpkgPkgsList(d, rootfs_dir, d.getVar(conf_file_var, True)).list(format) + elif img_type == "deb": + return DpkgPkgsList(d, rootfs_dir).list(format) + def populate_sdk(d, manifest_dir=None): env_bkp = os.environ.copy() -- cgit 1.2.3-korg