Allow to set a custom UUID not only at creation time of a filesystem but also at a later point in time in an already existing filesystem
74 lines
2.4 KiB
Python
74 lines
2.4 KiB
Python
# Copyright (c) 2015 SUSE Linux GmbH. All rights reserved.
|
|
#
|
|
# This file is part of kiwi.
|
|
#
|
|
# kiwi is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# kiwi is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with kiwi. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
# project
|
|
import kiwi.defaults as defaults
|
|
|
|
from kiwi.filesystem.base import FileSystemBase
|
|
from kiwi.command import Command
|
|
|
|
|
|
class FileSystemExt2(FileSystemBase):
|
|
"""
|
|
**Implements creation of ext2 filesystem**
|
|
"""
|
|
def create_on_device(
|
|
self, label: str = None, size: int = 0, unit: str = defaults.UNIT.kb,
|
|
uuid: str = None
|
|
):
|
|
"""
|
|
Create ext2 filesystem on block device
|
|
|
|
:param str label: label name
|
|
:param int size:
|
|
size value, can also be counted from the end via -X
|
|
The value is interpreted in units of: unit
|
|
:param str unit:
|
|
unit name. Default unit is set to: defaults.UNIT.kb
|
|
:param str uuid: UUID name
|
|
"""
|
|
device_args = [self.device_provider.get_device()]
|
|
if label:
|
|
self.custom_args['create_options'].append('-L')
|
|
self.custom_args['create_options'].append(label)
|
|
if uuid:
|
|
self.custom_args['create_options'].append('-U')
|
|
self.custom_args['create_options'].append(uuid)
|
|
if size:
|
|
device_args.append(
|
|
self._fs_size(
|
|
size=self._map_size(
|
|
size, from_unit=unit, to_unit=defaults.UNIT.kb
|
|
), unit=defaults.UNIT.kb
|
|
)
|
|
)
|
|
Command.run(
|
|
['mkfs.ext2'] + self.custom_args['create_options'] + device_args
|
|
)
|
|
|
|
def set_uuid(self):
|
|
"""
|
|
Create new random filesystem UUID
|
|
"""
|
|
device = self.device_provider.get_device()
|
|
Command.run(
|
|
['e2fsck', '-y', '-f', device], raise_on_error=False
|
|
)
|
|
Command.run(
|
|
['tune2fs', '-f', '-U', 'random', device]
|
|
)
|