aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2014-01-22 14:12:40 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-11 11:50:27 +0000
commitbb1fb4ceb544c161ed30cd102155657e3771859b (patch)
tree7e35927a5fc854c99859145aa1fe011786cae680
parenta8c1b7504bf9cd5625fdecfdc3c3adce53aa164c (diff)
downloadopenembedded-core-contrib-bb1fb4ceb544c161ed30cd102155657e3771859b.tar.gz
lib/oe/rootfs.py: use Manifest.INSTALL_ORDER
Since the Manifest class has this property, use it. This contains the default package installation order. Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
-rw-r--r--meta/lib/oe/rootfs.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index 2627bd71f0..659a44d1b2 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -24,11 +24,7 @@ class Rootfs(object):
bb.utils.remove(self.image_rootfs, True)
bb.utils.remove(self.d.getVar('MULTILIB_TEMP_ROOTFS', True), True)
- self.install_order = [
- Manifest.PKG_TYPE_LANGUAGE,
- Manifest.PKG_TYPE_MUST_INSTALL,
- Manifest.PKG_TYPE_ATTEMPT_ONLY,
- Manifest.PKG_TYPE_MULTILIB]
+ self.install_order = Manifest.INSTALL_ORDER
@abstractmethod
def _create(self):