summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/sdk.py
diff options
context:
space:
mode:
authorFredrik Gustafsson <fredrik.gustafsson@axis.com>2020-07-24 16:42:41 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-27 19:54:00 +0100
commit510d5c48c0496f23a3d7aede76ea8735da2d371d (patch)
treeb72a3ac894a92f77d04a8c8c6848cab04ffc3be2 /meta/lib/oe/sdk.py
parent3ef5a3c885e1010cddfe7eba1cd3728f15270d78 (diff)
downloadopenembedded-core-contrib-510d5c48c0496f23a3d7aede76ea8735da2d371d.tar.gz
deb: Move package manager to its own dir
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. RP: Fixes to parse/build Signed-off-by: Fredrik Gustafsson <fredrigu@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/sdk.py')
-rw-r--r--meta/lib/oe/sdk.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py
index ce98f80f18..49f519891f 100644
--- a/meta/lib/oe/sdk.py
+++ b/meta/lib/oe/sdk.py
@@ -119,6 +119,7 @@ def sdk_list_installed_packages(d, target, rootfs_dir=None):
from oe.package_manager.rpm import RpmPkgsList
from oe.package_manager.ipk import OpkgPkgsList
+ from oe.package_manager.deb import DpkgPkgsList
img_type = d.getVar('IMAGE_PKGTYPE')
if img_type == "rpm":
arch_var = ["SDK_PACKAGE_ARCHS", None][target is True]