mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00

automatically from the first available partition. There is no need to fiddle with sizes while keeping the offsets in mind any longer. Introduced Bytes() class which makes it a lot easier to handle size units.
8 lines
157 B
Python
8 lines
157 B
Python
from abstract import AbstractPartition
|
|
|
|
|
|
class SinglePartition(AbstractPartition):
|
|
|
|
def get_start(self):
|
|
from common.bytes import Bytes
|
|
return Bytes(0)
|