Merge remote-tracking branch 'qubesos/pr/13'
* qubesos/pr/13: Remove coreboot detection, add skip_grub parameter
This commit is contained in:
commit
f1c844098a
@ -1418,13 +1418,9 @@ class GRUB2(GRUB):
|
||||
def __init__(self):
|
||||
super(GRUB2, self).__init__()
|
||||
|
||||
if subprocess.check_output(
|
||||
['dmidecode', '-s', 'bios-vendor'],
|
||||
universal_newlines=True) == "coreboot\n":
|
||||
log.info("dmidecode -s bios-vendor returns coreboot")
|
||||
self.encryption_support = True
|
||||
self.skip_bootloader = True
|
||||
self.stage2_format_types += ["lvmlv"]
|
||||
self.encryption_support = True
|
||||
self.stage2_format_types += ["lvmlv"]
|
||||
self.skip_bootloader = flags.cmdline.getbool("skip_grub", False)
|
||||
|
||||
# XXX we probably need special handling for raid stage1 w/ gpt disklabel
|
||||
# since it's unlikely there'll be a bios boot partition on each disk
|
||||
|
Loading…
Reference in New Issue
Block a user