1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

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>
This commit is contained in:
Laurentiu Palcu
2014-01-22 14:12:40 +02:00
committed by Richard Purdie
parent b91e800764
commit 0b47dc4491
+1 -5
View File
@@ -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):