search for: output_drivers

Displaying 9 results from an estimated 9 matches for "output_drivers".

2019 Sep 18
1
[p2v PATCH] Ignore 'rhv-upload' driver (RHBZ#1590220)
...+ * Ignore the 'rhv-upload' driver, since we do not support passing all the + * options for it. + */ + if ((len != 4 || memcmp (name, "vdsm", 4) != 0) && + (len != 10 || memcmp (name, "rhv-upload", 10) != 0)) add_option ("output", &output_drivers, name, len); } -- 2.21.0
2020 Mar 16
3
[p2v PATCH 1/3] Add kickstart URLs for RHEL 8
Both BaseOS and AppStream are needed. --- virt-p2v-make-kickstart.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/virt-p2v-make-kickstart.in b/virt-p2v-make-kickstart.in index 779ba62..cbbfb8a 100644 --- a/virt-p2v-make-kickstart.in +++ b/virt-p2v-make-kickstart.in @@ -176,6 +176,16 @@ repo --name=rhel6_${minor}_server_optional --baseurl=$baseurl/Server/optional/$a
2020 Mar 16
0
[p2v PATCH 3/3] Ignore 'openstack' driver
...ssing all the options for them. */ if ((len != 4 || memcmp (name, "vdsm", 4) != 0) && + (len != 9 || memcmp (name, "openstack", 9) != 0) && (len != 10 || memcmp (name, "rhv-upload", 10) != 0)) add_option ("output", &output_drivers, name, len); } -- 2.24.1
2020 Mar 16
1
Re: [p2v PATCH 3/3] Ignore 'openstack' driver
...them. > */ > if ((len != 4 || memcmp (name, "vdsm", 4) != 0) && > + (len != 9 || memcmp (name, "openstack", 9) != 0) && > (len != 10 || memcmp (name, "rhv-upload", 10) != 0)) > add_option ("output", &output_drivers, name, len); > } > -- Series looks fine, ACK. Somewhere I had a patch (for "old" p2v/) which got half way through fixing the openstack options. I'll have to dig it up some time, but IIRC it depended rather crucially on having the generator generate p2v files, but since the...
2015 May 05
3
[PATCH 0/2] p2v: Warn if vcpus or memory would be larger than supported by RHEL (RHBZ#823758).
https://bugzilla.redhat.com/show_bug.cgi?id=823758
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am
2023 Jan 30
11
[p2v PATCH 00/11] Expose virt-v2v's "-oo"; re-enable openstack
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1792141 Let the user pass "-oo" options from the kernel cmdline and from the GUI to virt-v2v. This is primarily useful with the OpenStack output mode, so reenable that mode. Cc: Alban Lecorps <alban.lecorps at ubisoft.com> Laszlo Alban Lecorps (1): Introduce "p2v.output.misc" for passing "-oo" options
2016 Dec 07
0
[PATCH v2] v2v: Rename RHEV to RHV throughout.
...server:/mountpoint). For others, leave this field blank.")); if (config->output_storage != NULL) gtk_entry_set_text (GTK_ENTRY (os_entry), config->output_storage); table_attach (output_tbl, os_entry, @@ -1077,6 +1077,7 @@ repopulate_output_combo (struct config *config) if (output_drivers == NULL) { gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (o_combo), "libvirt"); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (o_combo), "local"); + /* Use rhev instead of rhv here so we can work with old virt-v2v. */ gtk_combo_box_text_append_text (G...
2016 Dec 07
2
[PATCH v2] v2v: Rename RHEV to RHV throughout.
v2: - Fix virt-p2v messages too. Rich.