mirror of
https://mojerepo.cf/NeoBoot/NeoBoot-9.git
synced 2025-11-02 09:35:48 +01:00
Delete image.py
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
from ubi import display
|
||||
from ubi.volume import get_volumes
|
||||
from ubi.block import get_blocks_in_list
|
||||
|
||||
class description(object):
|
||||
|
||||
def __init__(self, blocks, layout_info):
|
||||
self._image_seq = blocks[layout_info[0]].ec_hdr.image_seq
|
||||
self.vid_hdr_offset = blocks[layout_info[0]].ec_hdr.vid_hdr_offset
|
||||
self.version = blocks[layout_info[0]].ec_hdr.version
|
||||
self._start_peb = min(layout_info[2])
|
||||
self._end_peb = max(layout_info[2])
|
||||
self._volumes = get_volumes(blocks, layout_info)
|
||||
|
||||
def __repr__(self):
|
||||
return 'Image: %s' % self.image_seq
|
||||
|
||||
def get_blocks(self, blocks):
|
||||
return get_blocks_in_list(blocks, range(self._start_peb, self._end_peb + 1))
|
||||
|
||||
def _get_peb_range(self):
|
||||
return [self._start_peb, self._end_peb]
|
||||
|
||||
peb_range = property(_get_peb_range)
|
||||
|
||||
def _get_image_seq(self):
|
||||
return self._image_seq
|
||||
|
||||
image_seq = property(_get_image_seq)
|
||||
|
||||
def _get_volumes(self):
|
||||
return self._volumes
|
||||
|
||||
volumes = property(_get_volumes)
|
||||
|
||||
def display(self, tab = ''):
|
||||
display.image(self, tab)
|
||||
Reference in New Issue
Block a user