diff options
author | Kevin Hao <kexin.hao@windriver.com> | 2020-07-14 08:53:21 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-07-18 11:06:31 +0100 |
commit | 9818a04678d901f8e97455ebe7713d9d7dad365a (patch) | |
tree | 97a02d375d636dc50670a8e714c8935a6e90e7ac /scripts/lib/wic | |
parent | 5093e5472b6a14433fd76ba23180899e66d6418c (diff) | |
download | poky-9818a04678d901f8e97455ebe7713d9d7dad365a.tar.gz |
wic/filemap: Drop the unused block_is_unmapped()
This method is not used by any code, so drop it.
(From OE-Core rev: fb62a15349597ee026c67a0bb0a6ca2cc9bfe420)
Signed-off-by: Kevin Hao <kexin.hao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic')
-rw-r--r-- | scripts/lib/wic/filemap.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/lib/wic/filemap.py b/scripts/lib/wic/filemap.py index c53147c2f1..8cfed5afa8 100644 --- a/scripts/lib/wic/filemap.py +++ b/scripts/lib/wic/filemap.py | |||
@@ -142,15 +142,6 @@ class _FilemapBase(object): | |||
142 | 142 | ||
143 | raise Error("the method is not implemented") | 143 | raise Error("the method is not implemented") |
144 | 144 | ||
145 | def block_is_unmapped(self, block): # pylint: disable=W0613,R0201 | ||
146 | """ | ||
147 | This method has has to be implemented by child classes. It returns | ||
148 | 'True' if block number 'block' of the image file is not mapped (hole) | ||
149 | and 'False' otherwise. | ||
150 | """ | ||
151 | |||
152 | raise Error("the method is not implemented") | ||
153 | |||
154 | def get_mapped_ranges(self, start, count): # pylint: disable=W0613,R0201 | 145 | def get_mapped_ranges(self, start, count): # pylint: disable=W0613,R0201 |
155 | """ | 146 | """ |
156 | This method has has to be implemented by child classes. This is a | 147 | This method has has to be implemented by child classes. This is a |
@@ -265,10 +256,6 @@ class FilemapSeek(_FilemapBase): | |||
265 | % (block, result)) | 256 | % (block, result)) |
266 | return result | 257 | return result |
267 | 258 | ||
268 | def block_is_unmapped(self, block): | ||
269 | """Refer the '_FilemapBase' class for the documentation.""" | ||
270 | return not self.block_is_mapped(block) | ||
271 | |||
272 | def _get_ranges(self, start, count, whence1, whence2): | 259 | def _get_ranges(self, start, count, whence1, whence2): |
273 | """ | 260 | """ |
274 | This function implements 'get_mapped_ranges()' and | 261 | This function implements 'get_mapped_ranges()' and |
@@ -422,10 +409,6 @@ class FilemapFiemap(_FilemapBase): | |||
422 | % (block, result)) | 409 | % (block, result)) |
423 | return result | 410 | return result |
424 | 411 | ||
425 | def block_is_unmapped(self, block): | ||
426 | """Refer the '_FilemapBase' class for the documentation.""" | ||
427 | return not self.block_is_mapped(block) | ||
428 | |||
429 | def _unpack_fiemap_extent(self, index): | 412 | def _unpack_fiemap_extent(self, index): |
430 | """ | 413 | """ |
431 | Unpack a 'struct fiemap_extent' structure object number 'index' from | 414 | Unpack a 'struct fiemap_extent' structure object number 'index' from |