-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create_disk: Use bootupd to install UEFI if available
See https://github.com/coreos/bootupd and coreos/fedora-coreos-tracker#510 Basically in order to handle *updates*, bootupd also takes care of installation so that it knows the original version. In order to sanely "ratchet" this change, only use bootupd if we find the ostree deployment is using it.
- Loading branch information
1 parent
db85a3c
commit 2f22e16
Showing
3 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# For grub install when creating images and pxe install | ||
grub2 grub2-tools-extra | ||
bootupd | ||
|
||
# For creating bootable UEFI media on aarch64 | ||
shim-aa64 grub2-efi-aa64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# For grub install when creating images without anaconda | ||
grub2 | ||
bootupd | ||
|
||
# For creating bootable UEFI media on x86_64 | ||
shim-x64 grub2-efi-x64 |