summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/package_deb.bbclass10
-rw-r--r--meta/classes/rootfs_deb.bbclass3
2 files changed, 0 insertions, 13 deletions
diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass
index 23b449cbe0..c5824aab97 100644
--- a/meta/classes/package_deb.bbclass
+++ b/meta/classes/package_deb.bbclass
@@ -39,16 +39,6 @@ def debian_arch_map(arch, tune):
39 if arch == "arm": 39 if arch == "arm":
40 return arch + ["el", "hf"]["callconvention-hard" in tune_features] 40 return arch + ["el", "hf"]["callconvention-hard" in tune_features]
41 return arch 41 return arch
42#
43# install a bunch of packages using apt
44# the following shell variables needs to be set before calling this func:
45# INSTALL_ROOTFS_DEB - install root dir
46# INSTALL_BASEARCH_DEB - install base architecutre
47# INSTALL_ARCHS_DEB - list of available archs
48# INSTALL_PACKAGES_NORMAL_DEB - packages to be installed
49# INSTALL_PACKAGES_ATTEMPTONLY_DEB - packages attempted to be installed only
50# INSTALL_PACKAGES_LINGUAS_DEB - additional packages for uclibc
51# INSTALL_TASK_DEB - task name
52 42
53python do_package_deb () { 43python do_package_deb () {
54 from multiprocessing import Process 44 from multiprocessing import Process
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass
index 10af4b5ff0..12002c49f3 100644
--- a/meta/classes/rootfs_deb.bbclass
+++ b/meta/classes/rootfs_deb.bbclass
@@ -32,6 +32,3 @@ python () {
32 elif darch == "arm": 32 elif darch == "arm":
33 d.setVar('DEB_SDK_ARCH', 'armel') 33 d.setVar('DEB_SDK_ARCH', 'armel')
34} 34}
35
36# This will of course only work after rootfs_deb_do_rootfs or populate_sdk_deb has been called
37DPKG_QUERY_COMMAND = "${STAGING_BINDIR_NATIVE}/dpkg-query --admindir=$INSTALL_ROOTFS_DEB/var/lib/dpkg"