search for: uefi_x86_64_firmwar

Displaying 7 results from an estimated 7 matches for "uefi_x86_64_firmwar".

Did you mean: uefi_x86_64_firmware
2018 Apr 20
1
[PATCH] uefi: remove last references to kraxel's old edk2 builds
...find_uefi_firmware guest_arch = let files = (* The 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 Jan 25
0
[PATCH v2 2/7] lib: Move utilities to new directory common/utils.
...irmware are actually defined in src/uefi.c. *) + (* The 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 -- 2.9.3
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...‘%s’ from the source libvirt XML") str; None 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 l...
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.