]> code.ossystems Code Review - openembedded-core.git/commitdiff
package_deb: Drop obsolete comments/variables
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 15 Jun 2017 17:20:21 +0000 (18:20 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 16 Jun 2017 09:58:25 +0000 (10:58 +0100)
These comments/variables appear to be long dead, remove them.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/package_deb.bbclass
meta/classes/rootfs_deb.bbclass

index 23b449cbe053a05f64d9c8d0b59ce3354e035742..c5824aab97c141be5bb3613455ba45aa7e37aea1 100644 (file)
@@ -39,16 +39,6 @@ def debian_arch_map(arch, tune):
     if arch == "arm":
         return arch + ["el", "hf"]["callconvention-hard" in tune_features]
     return arch
-#
-# install a bunch of packages using apt
-# the following shell variables needs to be set before calling this func:
-# INSTALL_ROOTFS_DEB - install root dir
-# INSTALL_BASEARCH_DEB - install base architecutre
-# INSTALL_ARCHS_DEB - list of available archs
-# INSTALL_PACKAGES_NORMAL_DEB - packages to be installed
-# INSTALL_PACKAGES_ATTEMPTONLY_DEB - packages attempted to be installed only
-# INSTALL_PACKAGES_LINGUAS_DEB - additional packages for uclibc
-# INSTALL_TASK_DEB - task name
 
 python do_package_deb () {
     from multiprocessing import Process
index 10af4b5ff0f4bfeb57a42b921ab1bdae9a340d3f..12002c49f36c19a52d34e66d887453cf476ccbbe 100644 (file)
@@ -32,6 +32,3 @@ python () {
     elif darch == "arm":
          d.setVar('DEB_SDK_ARCH', 'armel')
 }
-
-# This will of course only work after rootfs_deb_do_rootfs or populate_sdk_deb has been called
-DPKG_QUERY_COMMAND = "${STAGING_BINDIR_NATIVE}/dpkg-query --admindir=$INSTALL_ROOTFS_DEB/var/lib/dpkg"