|
__init__(self,
storage=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
_sort_drives(self,
drives)
Sort drives based on the drive order. |
source code
|
|
|
clear_drive_list(self)
Clear the drive list to force re-populate on next access. |
source code
|
|
|
|
|
|
|
images(self)
List of OS images that will be included in the configuration. |
source code
|
|
|
clear_images(self)
Empty out the image list. |
source code
|
|
|
add_image(self,
image)
Add a BootLoaderImage instance to the image list. |
source code
|
|
|
image_label(self,
image)
Return the appropriate image label for this bootloader. |
source code
|
|
|
_find_chain_images(self)
Collect a list of potential non-linux OS installations. |
source code
|
|
|
|
|
|
|
|
|
_is_valid_md(self,
device,
device_types=None,
raid_levels=None,
metadata=None,
member_types=None,
desc="") |
source code
|
|
|
_is_valid_disklabel(self,
device,
disklabel_types=None,
desc="") |
source code
|
|
|
_is_valid_format(self,
device,
format_types=None,
mountpoints=None,
desc="") |
source code
|
|
|
|
|
_is_valid_location(self,
device,
max_mb=None,
desc="") |
source code
|
|
|
_is_valid_partition(self,
device,
primary=None,
desc="") |
source code
|
|
|
|
|
_device_type_match(self,
device,
types)
Return True if device is of one of the types in the list types. |
source code
|
|
|
|
|
set_preferred_stage1_type(self,
preferred)
Set a preferred type of stage1 device. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_set_console(self)
Set console options based on boot arguments. |
source code
|
|
|
write_config_console(self,
config)
Write console-related configuration lines. |
source code
|
|
|
write_config_password(self,
config)
Write password-related configuration lines. |
source code
|
|
|
write_config_header(self,
config)
Write global configuration lines. |
source code
|
|
|
write_config_images(self,
config)
Write image configuration entries. |
source code
|
|
|
|
|
write_config(self)
Write the bootloader configuration. |
source code
|
|
|
writeKS(self,
f)
Write bootloader section of kickstart configuration. |
source code
|
|
|
read(self)
Read an existing bootloader configuration. |
source code
|
|
|
|
|
write(self)
Write the bootloader configuration and install the bootloader. |
source code
|
|
|
|
|
update(self)
Update an existing bootloader configuration. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|
|
name = "Generic Bootloader"
|
|
packages = []
|
|
obsoletes = []
|
|
config_file = None
hash(x)
|
|
config_file_mode = 0600
|
|
can_dual_boot = False
|
|
can_update = False
|
|
image_label_attr = "label"
|
|
encryption_support = False
|
|
stage2_is_valid_stage1 = False
|
|
stage2_device_types = []
|
|
stage2_raid_levels = []
|
|
stage2_raid_metadata = []
|
|
stage2_raid_member_types = []
|
|
stage2_format_types = ["ext4", "ext3", "ext2"]
|
|
stage2_mountpoints = ["/boot", "/"]
|
|
stage2_bootable = False
|
|
stage2_must_be_primary = True
|
|
stage2_description = N_("/boot filesystem")
|
|
stage2_max_end_mb = 2* 1024* 1024
|
|
global_preserve_args = ["speakup_synth", "apic", "noapic", "ap...
|
|
preserve_args = []
|
|
_trusted_boot = False
|