Searched refs:BootLoader (Results 1 - 6 of 6) sorted by relevance
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/backend/loader/ |
H A D | legacygrub.py | 26 Legacy GRUB BootLoader Implementation for pybootmgmt 38 from bootmgmt.bootloader import BootLoader, BootLoaderInstallError namespace 57 class LegacyGRUBBootLoader(BootLoader, MenuLstBootLoaderMixIn): 58 """Implementation of a Legacy GRUB (GRUB 0.97) BootLoader. Handles parsing 93 BootLoader.PROP_CONSOLE, 94 BootLoader.PROP_SERIAL_PARAMS, 95 BootLoader.PROP_MINMEM64, 96 BootLoader.PROP_TIMEOUT, 97 BootLoader.PROP_QUIET, 98 BootLoader [all...] |
H A D | sbb.py | 39 from bootmgmt.bootloader import BootLoader, BootLoaderInstallError namespace 50 class OBPBootLoader(BootLoader): 53 SUPPORTED_PROPS = [BootLoader.PROP_BOOT_TARGS] 127 if BootLoader.ARTIFACT_BOOTLOADER_IMAGES not in artifacts: 129 if BootLoader.ARTIFACT_BOOTLOADER_TOOLS not in artifacts: 139 """Returns a list of artifacts for this BootLoader, given a 162 artifacts += [BootLoader.ARTIFACT_BOOTLOADER_CONFIGFILES] 171 artifacts += [BootLoader.ARTIFACT_BOOTLOADER_IMAGES] 179 artifacts += [BootLoader.ARTIFACT_BOOTLOADER_TOOLS] 192 self._bl_props[BootLoader [all...] |
H A D | __init__.py | 32 from bootmgmt.bootloader import BootLoader, ProxyBootLoader namespace 38 """Factory that returns BootLoader instances. 43 """Returns an instance of bootloader.BootLoader appropriate for the 48 returned that will manage access to both BootLoader instances. 72 'instance of BootLoader class %s' % loaderclass.__name__)
|
H A D | grub2.py | 58 from bootmgmt.bootloader import BootLoader, BootLoaderInstallError namespace 580 class GRUB2BootLoader(BootLoader): 581 """Implementation of the BootLoader interface for the GRUB2 boot 588 BootLoader.PROP_CONSOLE, 589 BootLoader.PROP_SERIAL_PARAMS, 590 BootLoader.PROP_TIMEOUT, 591 BootLoader.PROP_QUIET, 592 BootLoader.PROP_SPLASH, 593 BootLoader.PROP_FORECOLOR, 594 BootLoader [all...] |
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/ |
H A D | bootloader.py | 41 class BootLoader(LoggerMixin): class in inherits:LoggerMixin 78 # Possible artifacts for this BootLoader. Artifacts are used to determine 82 # The artifact list for the current dataroot is stored in the BootLoader 102 """Using the bootconfig (and optionally its BootLoader instance) 104 found for this BootLoader. 141 self.setprop(BootLoader.PROP_BOOT_TARGS, selected_fwnames) 157 # BootLoader to support. 213 added to the BootConfig associated with this BootLoader instance. 222 boot_targs = self._bl_props[BootLoader.PROP_BOOT_TARGS] 223 self._bl_props = {BootLoader [all...] |
H A D | bootconfig.py | 174 class | The class corresponding to the BootLoader that the 176 | BootConfig's BootLoader. If this BootLoader cannot be 202 (bootloader.BootLoader.ARTIFACT_BOOTLOADER_CONFIGFILES not in 245 loader = bootloader.BootLoader.get(bootconfig=self, **kwargs)
|
Completed in 32 milliseconds