summaryrefslogtreecommitdiffstats
path: root/meta
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:53:40 +0000
commit0b47dc4491701877068727e20e9147b5f3e635c0 (patch)
tree3ce5ecc015139c990766f192d9e1ebddd8ad0b5f /meta
parentb91e800764be6806b691078143ffc2b049d695d1 (diff)
downloadpoky-0b47dc4491701877068727e20e9147b5f3e635c0.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. (From OE-Core rev: bb1fb4ceb544c161ed30cd102155657e3771859b) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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):
24 bb.utils.remove(self.image_rootfs, True) 24 bb.utils.remove(self.image_rootfs, True)
25 bb.utils.remove(self.d.getVar('MULTILIB_TEMP_ROOTFS', True), True) 25 bb.utils.remove(self.d.getVar('MULTILIB_TEMP_ROOTFS', True), True)
26 26
27 self.install_order = [ 27 self.install_order = Manifest.INSTALL_ORDER
28 Manifest.PKG_TYPE_LANGUAGE,
29 Manifest.PKG_TYPE_MUST_INSTALL,
30 Manifest.PKG_TYPE_ATTEMPT_ONLY,
31 Manifest.PKG_TYPE_MULTILIB]
32 28
33 @abstractmethod 29 @abstractmethod
34 def _create(self): 30 def _create(self):