search for: a369072

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

Did you mean: 369072
2015 Jun 12
0
[PATCH 2/3] get-kernel: add --unversioned-names
...Filename.basename initrd_in in + let initrd_out = outputdir // dest_filename initrd_in in printf "download: %s -> %s\n%!" initrd_in initrd_out; g#download initrd_in initrd_out ); diff --git a/get-kernel/virt-get-kernel.pod b/get-kernel/virt-get-kernel.pod index e130b4c..a369072 100644 --- a/get-kernel/virt-get-kernel.pod +++ b/get-kernel/virt-get-kernel.pod @@ -88,6 +88,15 @@ from the guest are written. If not specified, the default output is the current directory. +=item B<--unversioned-names> + +This option affects the destination file name of extracted files...
2015 Jun 12
1
[PATCH 3/3] get-kernel: add --prefix
...if unversioned then fst (string_split "-" fn) + else fn in + match prefix with + | None -> fn + | Some p -> p ^ "-" ^ fn in (* Download the latest. *) let outputdir = diff --git a/get-kernel/virt-get-kernel.pod b/get-kernel/virt-get-kernel.pod index a369072..be0e8bb 100644 --- a/get-kernel/virt-get-kernel.pod +++ b/get-kernel/virt-get-kernel.pod @@ -88,6 +88,17 @@ from the guest are written. If not specified, the default output is the current directory. +=item B<--prefix> prefix + +This option specifies a prefix for the extracted files. + +...
2015 Jun 11
2
[PATCH] (Almost) new tool: virt-get-kernel
Extract the guest kernel/ramdisk extraction from virt-builder into a separate utility, so it can be used and improved without cluttering virt-builder. Currently it does what virt-builder --get-kernel did, adding also the options for remote disks and libvirt access, much like other libguestfs tools. virt-builder --get-kernel now just spawns virt-get-kernel. --- .gitignore |