search for: 0cd818a

Displaying 6 results from an estimated 6 matches for "0cd818a".

2015 Feb 27
3
[PATCH] v2v: allow configurable location for virtio drivers
...with the environment variable VIRTIO_WIN_DIR, in the same vein as is done for virt-tools. Signed-off-by: Roman Kagan <rkagan@parallels.com> --- v2v/convert_windows.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml index 0cd818a..e966341 100644 --- a/v2v/convert_windows.ml +++ b/v2v/convert_windows.ml @@ -47,7 +47,9 @@ let convert ~verbose ~keep_serial_console (g : G.guestfs) inspect source = try Sys.getenv "VIRT_TOOLS_DATA_DIR" with Not_found -> Config.datadir // "virt-tools" in - let v...
2015 Mar 31
2
[PATCH v2] v2v: allow configurable location for virtio drivers
...y: Roman Kagan <rkagan@parallels.com> --- changes from v1: - document the new environment variable v2v/convert_windows.ml | 4 +++- v2v/virt-v2v.pod | 10 ++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml index 0cd818a..e966341 100644 --- a/v2v/convert_windows.ml +++ b/v2v/convert_windows.ml @@ -47,7 +47,9 @@ let convert ~verbose ~keep_serial_console (g : G.guestfs) inspect source = try Sys.getenv "VIRT_TOOLS_DATA_DIR" with Not_found -> Config.datadir // "virt-tools" in - let v...
2015 Feb 27
0
[PATCH 4/4] convert_windows: split firstboot into steps
...ery; besides it makes adding more actions easier. Signed-off-by: Roman Kagan <rkagan@parallels.com> --- v2v/convert_windows.ml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml index a3c7152..0cd818a 100644 --- a/v2v/convert_windows.ml +++ b/v2v/convert_windows.ml @@ -140,17 +140,10 @@ let convert ~verbose ~keep_serial_console (g : G.guestfs) inspect source = (* Perform the conversion of the Windows guest. *) let rec configure_firstboot () = - let fb = Buffer.create 1024 in - bpri...
2015 Feb 27
0
Re: [PATCH] v2v: allow configurable location for virtio drivers
...in the same vein as is done for > virt-tools. > > Signed-off-by: Roman Kagan <rkagan@parallels.com> > --- > v2v/convert_windows.ml | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml > index 0cd818a..e966341 100644 > --- a/v2v/convert_windows.ml > +++ b/v2v/convert_windows.ml > @@ -47,7 +47,9 @@ let convert ~verbose ~keep_serial_console (g : G.guestfs) inspect source = > try Sys.getenv "VIRT_TOOLS_DATA_DIR" > with Not_found -> Config.datadir // "virt-...
2015 Mar 31
0
Re: [PATCH v2] v2v: allow configurable location for virtio drivers
...-- > changes from v1: > - document the new environment variable > > v2v/convert_windows.ml | 4 +++- > v2v/virt-v2v.pod | 10 ++++++++-- > 2 files changed, 11 insertions(+), 3 deletions(-) > > diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml > index 0cd818a..e966341 100644 > --- a/v2v/convert_windows.ml > +++ b/v2v/convert_windows.ml > @@ -47,7 +47,9 @@ let convert ~verbose ~keep_serial_console (g : G.guestfs) inspect source = > try Sys.getenv "VIRT_TOOLS_DATA_DIR" > with Not_found -> Config.datadir // "virt-...
2015 Feb 27
5
[PATCH 0/4] firstboot: assorted enhancements
This patchset attempts to address a number of shortcomings in the firstboot infrastructure I came across while working with v2v conversion of various Windows VMs. Roman Kagan (4): firstboot: consolidate line ending conversion firstboot: enhance firstboot driver script for Windows firstboot: make script naming descriptive convert_windows: split firstboot into steps