Displaying 5 results from an estimated 5 matches for "find_sect".
Did you mean:
find_sent
2015 Nov 17
0
[PATCH 2/3] v2v: windows: Add a Windows '*.inf' file parser.
...*)
+ let sections = List.map (
+ fun (header, lines) ->
+ let header = String.lowercase_ascii header in
+ let lines = List.map (
+ fun (key, value) ->
+ String.lowercase_ascii key, value
+ ) lines in
+ header, lines
+ ) sections in
+
+ sections
+
+let find_section t section_name =
+ let section_name = String.lowercase_ascii section_name in
+ List.assoc section_name t
+
+let find_key t section_name key_name =
+ let data = find_section t section_name in
+ let key_name = String.lowercase_ascii key_name in
+ List.assoc key_name data
+
+let load filename...
2011 Jul 19
6
[PATCH 0/6] Move the infor for the help/man page in the source
The following series implement a way to generate the help messages and
the btrfs man page from the sources comments for the "btrfs" commanda
.
The syntax and the detailed help of every subcommand are stored in
the comments before the function which implements the subcommand.
The fact that the help messages and the man page are generated from the
same source should help to avoid
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
2016 May 31
0
[ANNOUNCE] intel-gpu-tools 1.15
...order
tools/intel_bios_reader: add --hexdump option to dump hex, disable by default
tools/intel_bios_reader: add support for dumping only specific section
tools/intel_bios_reader: add --all-panels option to dump all panels
tools/intel_bios_reader: free the block returned by find_section
man: update intel_bios_reader man page
tools/intel_bios_reader: abstract header information dumping
tools/intel_bios_reader: clean up VBT/BDB header dumping
tools/intel_bios_reader: print errors to stderr, return EXIT_FAILURE
lib/igt_kms: move gtk-doc comments next...
2015 Nov 17
0
[PATCH 3/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
...(* Find the [Manufacturer] section and try to find the first line.
+ * There is no consistent naming of this line unfortunately.
+ * Reference: https://www.redhat.com/archives/libguestfs/2015-November/msg00065.html
+ *)
+and parse_manufacturer inf_name sections =
+ try
+ let lines = Windows_inf.find_section sections "Manufacturer" in
+ match lines with
+ | [] -> raise Not_found
+ | (_, manufacturer) :: _ ->
+ if Str.string_match manufacturer_rex manufacturer 0 then (
+ let arch = Str.matched_group 1 manufacturer in
+ if arch = "x86" || arch =...