search for: ffcee12

Displaying 3 results from an estimated 3 matches for "ffcee12".

2015 Feb 27
0
[PATCH 2/4] firstboot: enhance firstboot driver script for Windows
...he script reported success, move it to -done directory. Signed-off-by: Roman Kagan <rkagan@parallels.com> --- customize/firstboot.ml | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/customize/firstboot.ml b/customize/firstboot.ml index ffcee12..f529462 100644 --- a/customize/firstboot.ml +++ b/customize/firstboot.ml @@ -210,16 +210,39 @@ module Windows = struct * scripts in the directory. Note we need to use CRLF line endings * in this script. *) - let firstboot_script = "\ + let firstboot_script = sprintf &...
2015 Feb 27
0
[PATCH 1/4] firstboot: consolidate line ending conversion
...ts used to remain with unix-style line endings. Signed-off-by: Roman Kagan <rkagan@parallels.com> --- customize/firstboot.ml | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/customize/firstboot.ml b/customize/firstboot.ml index 23a0432..ffcee12 100644 --- a/customize/firstboot.ml +++ b/customize/firstboot.ml @@ -24,6 +24,9 @@ open Common_gettext.Gettext open Customize_utils open Regedit +let unix2dos s = + String.concat "\r\n" (Str.split_delim (Str.regexp_string "\n") s) + (* For Linux guests. *) module Linux =...
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