Displaying 2 results from an estimated 2 matches for "set_python".
2017 Mar 22
0
[PATCH 4/5] dib: require a Python interpreter
...ml
+++ b/dib/cmdline.ml
@@ -54,6 +54,7 @@ type cmdline = {
arch : string;
envvars : string list;
checksum : bool;
+ python : string option;
}
let parse_cmdline () =
@@ -151,6 +152,9 @@ read the man page virt-dib(1).
let checksum = ref false in
+ let python = ref None in
+ let set_python arg = python := Some arg in
+
let argspec = [
[ S 'p'; L"element-path" ], Getopt.String ("path", append_element_path), s_"Add new a elements location";
[ L"exclude-element" ], Getopt.String ("element", append_excluded...
2017 Mar 22
7
[PATCH 0/5] dib: initial work to support d-i-b 2.0
Hi,
this series start to implement some of the changes needed to support
d-i-b 2.0; normal VM distro builds seem to work correctly, ramdisk
builds are still broken and require more efforts.
Thanks,
Pino Toscano (5):
dib: implement get_image_element_array stuff
dib: export IMAGE_BLOCK_DEVICE_WITHOUT_PART
dib: extract get_required_tool out of require_tool
dib: require a Python interpreter