diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-04-24 15:59:19 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-25 17:19:19 +0100 |
commit | 08a38a7865c41ec60f4b993b964f8d477ea0f680 (patch) | |
tree | bfbf9bface6e748f3ab50d4a86046fc850b0c153 /meta/lib/oe/rootfs.py | |
parent | f11e9e295d7f8a1e0219fb7a45a5a134a773aae2 (diff) | |
download | poky-08a38a7865c41ec60f4b993b964f8d477ea0f680.tar.gz |
Globally replace oe.utils.contains to bb.utils.contains
BitBake has the exact same code as oe.utils.contains so there's no
reason to duplicate it. We now rely on the bb.utils.contains code for
metadata.
(From OE-Core rev: 93499ebc46547f5bf6dcecd5a786ead9f726de28)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/rootfs.py')
-rw-r--r-- | meta/lib/oe/rootfs.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index dddbef4d64..3d1111a40a 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -1,6 +1,5 @@ | |||
1 | from abc import ABCMeta, abstractmethod | 1 | from abc import ABCMeta, abstractmethod |
2 | from oe.utils import execute_pre_post_process | 2 | from oe.utils import execute_pre_post_process |
3 | from oe.utils import contains as base_contains | ||
4 | from oe.package_manager import * | 3 | from oe.package_manager import * |
5 | from oe.manifest import * | 4 | from oe.manifest import * |
6 | import oe.path | 5 | import oe.path |
@@ -42,7 +41,7 @@ class Rootfs(object): | |||
42 | pass | 41 | pass |
43 | 42 | ||
44 | def _insert_feed_uris(self): | 43 | def _insert_feed_uris(self): |
45 | if base_contains("IMAGE_FEATURES", "package-management", | 44 | if bb.utils.contains("IMAGE_FEATURES", "package-management", |
46 | True, False, self.d): | 45 | True, False, self.d): |
47 | self.pm.insert_feeds_uris() | 46 | self.pm.insert_feeds_uris() |
48 | 47 | ||
@@ -108,7 +107,7 @@ class Rootfs(object): | |||
108 | 107 | ||
109 | execute_pre_post_process(self.d, post_process_cmds) | 108 | execute_pre_post_process(self.d, post_process_cmds) |
110 | 109 | ||
111 | if base_contains("IMAGE_FEATURES", "read-only-rootfs", | 110 | if bb.utils.contains("IMAGE_FEATURES", "read-only-rootfs", |
112 | True, False, self.d): | 111 | True, False, self.d): |
113 | delayed_postinsts = self._get_delayed_postinsts() | 112 | delayed_postinsts = self._get_delayed_postinsts() |
114 | if delayed_postinsts is not None: | 113 | if delayed_postinsts is not None: |
@@ -130,7 +129,7 @@ class Rootfs(object): | |||
130 | self._cleanup() | 129 | self._cleanup() |
131 | 130 | ||
132 | def _uninstall_uneeded(self): | 131 | def _uninstall_uneeded(self): |
133 | if base_contains("IMAGE_FEATURES", "package-management", | 132 | if bb.utils.contains("IMAGE_FEATURES", "package-management", |
134 | True, False, self.d): | 133 | True, False, self.d): |
135 | return | 134 | return |
136 | 135 | ||