Skip to content

Commit

Permalink
kfish: dont force uefi
Browse files Browse the repository at this point in the history
  • Loading branch information
karmab committed Oct 14, 2024
1 parent 76fcfc0 commit 4923ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ailib/kfish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def set_iso_once(self):
newboot['BootSourceOverrideEnabled'] = 'Once'
if currentboot['BootSourceOverrideTarget'] != 'Cd':
newboot['BootSourceOverrideTarget'] = 'Cd'
if 'BootSourceOverrideMode' not in currentboot or currentboot['BootSourceOverrideMode'] != 'UEFI':
if 'BootSourceOverrideMode' not in currentboot:
newboot['BootSourceOverrideMode'] = 'UEFI'
data = {"Boot": newboot}
if self.debug:
Expand Down

0 comments on commit 4923ffd

Please sign in to comment.