kiwi-el8/kiwi/firmware.py
2016-04-11 15:09:26 +02:00

222 lines
5.8 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/>
#
import platform
import re
# project
from .defaults import Defaults
from .exceptions import (
KiwiNotImplementedError
)
class FirmWare(object):
"""
Implements firmware specific image information
According to the selected firmware some parameters in a disk
image changes. This class provides methods to provide firmware
dependant information
Attributes
* :attr:`arch`
machine architecture
* :attr:`zipl_target_type`
XML configured zipl target type
* :attr:`vboot_mbsize`
XML configured virtual boot partition size
* :attr:`firmware`
XML configured firmware name
"""
def __init__(self, xml_state):
self.arch = platform.machine()
self.zipl_target_type = xml_state.build_type.get_zipl_targettype()
self.vboot_mbsize = xml_state.build_type.get_vbootsize()
self.firmware = xml_state.build_type.get_firmware()
if not self.firmware:
self.firmware = Defaults.get_default_firmware(self.arch)
if self.firmware:
firmware_types = Defaults.get_firmware_types()
if self.firmware not in firmware_types[self.arch]:
raise KiwiNotImplementedError(
'support for firmware %s for arch %s not implemented' %
(self.firmware, self.arch)
)
def get_partition_table_type(self):
"""
Partition table type according to architecture and firmware
:return: partition table name
:rtype: string
"""
if 's390' in self.arch:
if self.zipl_target_type and 'LDL' in self.zipl_target_type:
return 'dasd'
elif self.zipl_target_type and 'CDL' in self.zipl_target_type:
return 'dasd'
else:
return 'msdos'
elif 'ppc64' in self.arch:
if self.opal_mode():
return 'gpt'
else:
return 'msdos'
elif self.efi_mode():
return 'gpt'
else:
return 'msdos'
def legacy_bios_mode(self):
"""
Check if the legacy boot from BIOS systems should be activated
:rtype: bool
"""
if self.get_partition_table_type() == 'gpt':
if self.arch == 'x86_64' or re.match('i.86', self.arch):
return True
else:
return False
else:
return False
def efi_mode(self):
"""
Check if EFI mode is requested
:rtype: bool
"""
if self.firmware in Defaults.get_efi_capable_firmware_names():
return self.firmware
def ec2_mode(self):
"""
Check if EC2 mode is requested
:rtype: bool
"""
if self.firmware in Defaults.get_ec2_capable_firmware_names():
return self.firmware
def bios_mode(self):
"""
Check if BIOS mode is requested
:rtype: bool
"""
if self.firmware == 'bios':
return True
else:
return False
def ofw_mode(self):
"""
Check if OFW mode is requested
:rtype: bool
"""
if self.firmware == 'ofw':
return True
else:
return False
def opal_mode(self):
"""
Check if Opal mode is requested
:rtype: bool
"""
if self.firmware == 'opal':
return True
else:
return False
def vboot_mode(self):
"""
Check if vboot (virtual boot partition) mode is requested
:rtype: bool
"""
if self.efi_mode() == 'vboot':
return True
else:
return False
def get_legacy_bios_partition_size(self):
"""
Size of legacy bios_grub partition if legacy BIOS mode is
required. Returns 0 if no such partition is needed
:return: mbsize
:rtype: int
"""
if self.legacy_bios_mode():
return Defaults.get_default_legacy_bios_mbytes()
else:
return 0
def get_efi_partition_size(self):
"""
Size of EFI partition.
Returns 0 if no such partition is needed
:return: mbsize
:rtype: int
"""
if self.efi_mode():
return Defaults.get_default_efi_boot_mbytes()
else:
return 0
def get_vboot_partition_size(self):
"""
Size of virtual boot partition.
Returns 0 if no such partition is needed
:return: mbsize
:rtype: int
"""
if self.vboot_mode():
if self.vboot_mbsize:
return self.vboot_mbsize
else:
return Defaults.get_default_vboot_mbytes()
else:
return 0
def get_prep_partition_size(self):
"""
Size of Prep partition if OFW mode is requested.
Returns 0 if no such partition is needed
:return: mbsize
:rtype: int
"""
if self.ofw_mode():
return Defaults.get_default_prep_mbytes()
else:
return 0