summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-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):