Displaying 4 results from an estimated 4 matches for "uefi_aarch64_firmware".
2018 Apr 20
1
[PATCH] uefi: remove last references to kraxel's old edk2 builds
...lists of firmware are actually defined in common/utils/uefi.c. *)
match guest_arch with
- | "i386" | "i486" | "i586" | "i686" -> Uefi.uefi_i386_firmware
| "x86_64" -> Uefi.uefi_x86_64_firmware
| "aarch64" -> Uefi.uefi_aarch64_firmware
| arch ->
--
2.14.3
2019 Oct 15
4
Splitting the large libguestfs repo
I got a little way into this. The two attached patches are
preliminary work.
My proposed split is:
libguestfs.git
common -> git submodule libguestfs-common.git
generator/
lib/
all language bindings
C based tools (eg. virt-df, virt-edit, guestfish)
guestfs-tools.git
common -> git submodule libguestfs-common.git
2016 Aug 18
3
[PATCH v2 0/2] v2v: Use OVMF secure boot file (RHBZ#1367615).
First version was posted here:
https://www.redhat.com/archives/libguestfs/2016-August/thread.html#00100
This is semantically the same as the first version. However
I've split the patch up into two parts. In the first part,
I factor out the UEFI paths so now they are created by the
generator and written in the library and v2v/ directory directly,
instead of the complex business of having a C
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...let parse_libvirt_xml ?conn xml =
diff --git a/v2v/utils.ml b/v2v/utils.ml
index 5ecf26880..e0275db53 100644
--- a/v2v/utils.ml
+++ b/v2v/utils.ml
@@ -57,7 +57,7 @@ let find_uefi_firmware guest_arch =
| "x86_64" -> Uefi.uefi_x86_64_firmware
| "aarch64" -> Uefi.uefi_aarch64_firmware
| arch ->
- error (f_"don't know how to convert UEFI guests for architecture %s")
+ error (f_"don’t know how to convert UEFI guests for architecture %s")
guest_arch in
let rec loop = function
| [] ->
diff --git a/v2v/v2v.ml b/v2v/...