Displaying 7 results from an estimated 7 matches for "configstringlist".
2019 Jul 01
0
[PATCH 1/6] p2v: move kernel config to perl script
...;$',
+};
+
+struct ConfigBool =>
+{
+  name => '$',
+};
+
+struct ConfigUInt64 =>
+{
+  name => '$',
+};
+
+struct ConfigUnsigned =>
+{
+  name => '$',
+};
+
+struct ConfigEnum =>
+{
+  name => '$',
+  enum => '$',
+};
+
+struct ConfigStringList =>
+{
+  name => '$',
+};
+
+# Enums.
+my @enums = (
+  ["basis", (
+    ["BASIS_UNKNOWN",   "unknown",   "RTC could not be read"],
+    ["BASIS_UTC",       "utc",       "RTC is either UTC or an offset from UTC"],
+...
2019 Jul 01
8
[PATCH 0/6] p2v: start making it independent
As preliminary steps in splitting virt-p2v to an own repository,
start making p2v more independent within libguestfs.  This is
accomplished by the following changes:
- generate the p2v kernel config sources & docs at build time using a
  Perl script, rather than the generator (so no need for OCaml when
  building from git, and no generated sources in dist tarballs)
- create two local test
2023 Jan 30
1
[p2v PATCH 02/11] Introduce "p2v.output.misc" for passing "-oo" options to virt-v2v
From: Alban Lecorps <alban.lecorps at ubisoft.com>
The "-oo" option will be useful primarily for the openstack output mode
(currently disabled, from commit b74c126629e3, "Ignore 'openstack'
driver", 2020-03-16).
Use a ConfigStringList knob for "-oo", and for each OPTION=VALUE element
in that list, create a separate "-oo OPTION=VALUE" option. Do this because
there are too many "-oo" options, and because they are output-dependent,
and because even virt-v2v "blindly" forwards some of those (s...
2018 Jun 29
3
p2v: Various cleanups.
These are a prelude to fixing
https://bugzilla.redhat.com/show_bug.cgi?id=1590220
A lot of the virt-p2v configuration code was duplicated manually.
These changes make sure that most of it is generated.
Rich.
2023 Jan 30
1
[p2v PATCH 09/11] gui: expose "p2v.output.misc" (-oo)
On Mon, Jan 30, 2023 at 03:22:26PM +0100, Laszlo Ersek wrote:
> +  str = gtk_entry_get_text (GTK_ENTRY (oo_entry));
> +  guestfs_int_free_string_list (config->output.misc);
> +  config->output.misc = guestfs_int_split_string (',', str);
My concern here is that someone is going to put "foo=bar, baz=1" in
this field, and it will improperly split above.  So maybe a
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
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