diff options
author | Christian Breunig <christian@breunig.cc> | 2024-08-26 20:20:41 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-09-14 20:44:55 +0200 |
commit | 56cd7de907ef26ae27909a5d468768bb6e1e7f6f (patch) | |
tree | 12dc44c33cd0cb10da6056cebc84ae170c5cf701 /python | |
parent | 5df36ba0e3c95efb2962ed54e614552f7425e173 (diff) | |
download | vyos-1x-56cd7de907ef26ae27909a5d468768bb6e1e7f6f.tar.gz vyos-1x-56cd7de907ef26ae27909a5d468768bb6e1e7f6f.zip |
T861: add dependency to enable UEFI secure boot support
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/system/grub.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/system/grub.py b/python/vyos/system/grub.py index daddb799a..de8303ee2 100644 --- a/python/vyos/system/grub.py +++ b/python/vyos/system/grub.py @@ -82,7 +82,7 @@ def install(drive_path: str, boot_dir: str, efi_dir: str, id: str = 'VyOS', chro f'{chroot_cmd} grub-install --no-floppy --recheck --target={efi_installation_arch}-efi \ --force-extra-removable --boot-directory={boot_dir} \ --efi-directory={efi_dir} --bootloader-id="{id}" \ - --no-uefi-secure-boot' + --uefi-secure-boot' ) |