diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-01-26 15:56:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-03 14:53:50 +0000 |
commit | 124f0419b9d43c13ac46ea6ccaf17b15c499ea8f (patch) | |
tree | 5b26abf0f360a0dba5b44067e6ac0606b055e76a /meta/lib/oe | |
parent | 44212390de5e21b865ca9a987161da0d557c77c4 (diff) | |
download | poky-124f0419b9d43c13ac46ea6ccaf17b15c499ea8f.tar.gz |
lib/oe/rootfs.py: rename _uninstall_uneeded to fix spelling error
Rename it to _uninstall_unneeded.
(From OE-Core rev: cb217f442b8143d88112bebe4011051efbd905a3)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/rootfs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 420c0b9623..c554f22fbe 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -118,7 +118,7 @@ class Rootfs(object): | |||
118 | if self.d.getVar('USE_DEVFS', True) != "1": | 118 | if self.d.getVar('USE_DEVFS', True) != "1": |
119 | self._create_devfs() | 119 | self._create_devfs() |
120 | 120 | ||
121 | self._uninstall_uneeded() | 121 | self._uninstall_unneeded() |
122 | 122 | ||
123 | self._insert_feed_uris() | 123 | self._insert_feed_uris() |
124 | 124 | ||
@@ -128,7 +128,7 @@ class Rootfs(object): | |||
128 | 128 | ||
129 | self._cleanup() | 129 | self._cleanup() |
130 | 130 | ||
131 | def _uninstall_uneeded(self): | 131 | def _uninstall_unneeded(self): |
132 | # Remove unneeded init script symlinks | 132 | # Remove unneeded init script symlinks |
133 | delayed_postinsts = self._get_delayed_postinsts() | 133 | delayed_postinsts = self._get_delayed_postinsts() |
134 | if delayed_postinsts is None: | 134 | if delayed_postinsts is None: |