osbuild2/grub2: add install option for uefi

The `uefi.install` option indicates whether the `org.osbuild.grub2`
stage will copy the efi binaries from the build root to the `/boot`
directory in the tree.

Co-Developed-by: Achilleas Koutsou <achilleas@koutsou.net>
Co-Developed-by: Antonio Murdaca <runcom@linux.com>
This commit is contained in:
Christian Kellner 2021-08-22 21:13:48 +00:00
parent 321dcc56bf
commit fcace40710

View file

@ -20,7 +20,8 @@ type GRUB2StageOptions struct {
}
type GRUB2UEFI struct {
Vendor string `json:"vendor"`
Vendor string `json:"vendor"`
Install bool `json:"install,omitempty"`
}
func (GRUB2StageOptions) isStageOptions() {}