summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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):