Displaying 2 results from an estimated 2 matches for "inf_files".
2015 Nov 17
0
[PATCH 3/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
...f_content, inf_name, directory)]
+ * where [inf_content] is the unparsed inf file, [inf_name] is a debug
+ * string we can use in error messages to refer to the inf file,
+ * and [directory] is a string used to track the directory containing
+ * the inf file.
+ *)
+ let inf_files : (string * string * string) list =
+ match virtio_win_source with
+ | Virtio_Win_Directory ->
+ let cmd =
+ sprintf "find %s -name '*.inf' -type f" (quote virtio_win) in
+ let paths = external_command cmd in
+ List.map (fun pat...
2015 Nov 17
8
[PATCH 0/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
https://github.com/rwmjones/libguestfs/tree/rewrite-virtio-copy-drivers
Instead of trying to split and parse elements from virtio-win paths,
use the '*.inf' files supplied with the drivers to control how Windows
drivers are installed.
The following emails best explain how this works:
https://www.redhat.com/archives/libguestfs/2015-October/msg00352.html