Displaying 20 results from an estimated 34 matches for "output_opt".
Did you mean:
output_bpc
2018 Mar 23
1
Re: [PATCH v7 4/6] v2v: Add general mechanism for input and output options (-io/-oo).
...Input_libvirt_vddk.parse_vddk_input_options input_options in
> + Some (`VDDK vddk_options)
> + ) in
> +
> + (* Output mode affects whether some output options should or
> + * should not be used.
> + *)
> + let output_mode =
> + let is_query = output_options = ["?", ""] in
> + let no_options () =
> + if is_query then (
> + printf (f_"No -oo (output options) are supported in this output mode.\n");
> + exit 0
> + )
> + else if output_options <> [] then
> +...
2008 Jul 10
4
[LLVMdev] Including svn version number in --version output
...mpvers: dumpvers.c
-version.o: version.c version.h $(DATESTAMP) $(BASEVER) $(DEVPHASE)
+.PHONY: version.o
+version.o:
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
-DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
+ -DSVNVER=$(SVNVER_s) \
-DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $
(TM_H) \
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080709/d8787d5a/attachment.html>
2008 Jul 10
0
[LLVMdev] Including svn version number in --version output
...: version.c version.h $(DATESTAMP) $(BASEVER) $(DEVPHASE)
> +.PHONY: version.o
> +version.o:
> $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
> -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
> + -DSVNVER=$(SVNVER_s) \
> -DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
>
> gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
>
>
>
2018 Mar 22
0
[PATCH v7 4/6] v2v: Add general mechanism for input and output options (-io/-oo).
...String.split "=" option in
+ set_input_option_compat k v
+ in
+
let network_map = ref NetworkMap.empty in
let add_network, add_bridge =
let add flag name t str =
@@ -163,6 +154,15 @@ let parse_cmdline () =
error (f_"unknown -oa option: %s") s
in
+ let output_options = ref [] in
+ let set_output_option_compat k v =
+ output_options := (k, v) :: !output_options
+ in
+ let set_output_option option =
+ let k, v = String.split "=" option in
+ set_output_option_compat k v
+ in
+
let root_choice = ref AskRoot in
let set_root_choice =...
2018 Aug 14
2
[PATCH] v2v: Add --print-estimate option to print source size estimate.
...p";
[ L"print-source" ], Getopt.Set print_source,
s_"Print source and stop";
[ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu only)";
@@ -330,6 +335,7 @@ read the man page virt-v2v(1).
let output_options = List.rev !output_options in
let output_password = !output_password in
let output_storage = !output_storage in
+ let print_estimate = !print_estimate in
let print_source = !print_source in
let qemu_boot = !qemu_boot in
let root_choice = !root_choice in
@@ -355,6 +361,12 @@ read...
2018 Mar 27
1
Re: [PATCH v7 4/6] v2v: Add general mechanism for input and output options (-io/-oo).
...t_option_compat k v
> + in
> +
> let network_map = ref NetworkMap.empty in
> let add_network, add_bridge =
> let add flag name t str =
> @@ -163,6 +154,15 @@ let parse_cmdline () =
> error (f_"unknown -oa option: %s") s
> in
>
> + let output_options = ref [] in
> + let set_output_option_compat k v =
> + output_options := (k, v) :: !output_options
> + in
> + let set_output_option option =
> + let k, v = String.split "=" option in
> + set_output_option_compat k v
> + in
> +
> let root_choi...
2018 Mar 22
4
[PATCH INCOMPLETE 0/4] v2v: Add general mechanism for input and output options.
This patch isn't quite complete (see ‘assert false’).
Currently we have a bunch of ad hoc options like --vddk* and --vdsm*
(and proposed to add --rhv*) to handle extra parameters for input and
output modes/transports. This complicates the command line parsing
and also the clarity of the command line (becauseit's not very obvious
which options apply to which side of the conversion).
2008 Jul 10
4
[LLVMdev] Including svn version number in --version output
...$(DATESTAMP) $(BASEVER) $(DEVPHASE)
>> +.PHONY: version.o
>> +version.o:
>> $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
>> -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
>> + -DSVNVER=$(SVNVER_s) \
>> -DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
>>
>> gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $
>> (TM_H) \
>>
>>
>>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.c...
2018 Aug 16
0
[PATCH v2] v2v: Add --print-estimate option to print copy size estimate.
...p";
[ L"print-source" ], Getopt.Set print_source,
s_"Print source and stop";
[ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu only)";
@@ -330,6 +335,7 @@ read the man page virt-v2v(1).
let output_options = List.rev !output_options in
let output_password = !output_password in
let output_storage = !output_storage in
+ let print_estimate = !print_estimate in
let print_source = !print_source in
let qemu_boot = !qemu_boot in
let root_choice = !root_choice in
@@ -355,6 +361,12 @@ read...
2018 Aug 14
0
Re: [PATCH] v2v: Add --print-estimate option to print source size estimate.
...int-source" ], Getopt.Set print_source,
> s_"Print source and stop";
> [ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu
> only)";
> @@ -330,6 +335,7 @@ read the man page virt-v2v(1).
> let output_options = List.rev !output_options in
> let output_password = !output_password in
> let output_storage = !output_storage in
> + let print_estimate = !print_estimate in
> let print_source = !print_source in
> let qemu_boot = !qemu_boot in
> let root_choice = !root_choic...
2018 Aug 23
0
[PATCH v4] v2v: Add --print-estimate option to print copy size estimate.
...p";
[ L"print-source" ], Getopt.Set print_source,
s_"Print source and stop";
[ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu only)";
@@ -326,6 +330,7 @@ read the man page virt-v2v(1).
let output_options = List.rev !output_options in
let output_password = !output_password in
let output_storage = !output_storage in
+ let print_estimate = !print_estimate in
let print_source = !print_source in
let qemu_boot = !qemu_boot in
let root_choice = !root_choice in
@@ -351,6 +356,12 @@ read...
2018 Aug 17
0
[PATCH v3 4/4] v2v: Add --print-estimate option to print copy size estimate.
...p";
[ L"print-source" ], Getopt.Set print_source,
s_"Print source and stop";
[ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu only)";
@@ -330,6 +334,7 @@ read the man page virt-v2v(1).
let output_options = List.rev !output_options in
let output_password = !output_password in
let output_storage = !output_storage in
+ let print_estimate = !print_estimate in
let print_source = !print_source in
let qemu_boot = !qemu_boot in
let root_choice = !root_choice in
@@ -355,6 +360,12 @@ read...
2018 Mar 22
12
[PATCH v7 0/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
v6 was here:
https://www.redhat.com/archives/libguestfs/2018-March/msg00126.html
This makes a number of significant changes:
- Input and output options now use a uniform set of -io and -oo
parameters.
- For -o rhv-upload, we use ‘-oo rhv-cafile=/tmp/ca.pem’ etc. The
‘--rhv*’ options have been dropped.
- Rearranges the documentation.
- As before includes (untested) support for zero,
2018 Aug 24
0
[PATCH v6] v2v: Add --print-estimate option to print copy size estimate.
...p";
[ L"print-source" ], Getopt.Set print_source,
s_"Print source and stop";
[ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu only)";
@@ -326,6 +330,7 @@ read the man page virt-v2v(1).
let output_options = List.rev !output_options in
let output_password = !output_password in
let output_storage = !output_storage in
+ let print_estimate = !print_estimate in
let print_source = !print_source in
let qemu_boot = !qemu_boot in
let root_choice = !root_choice in
@@ -353,6 +358,12 @@ read...
2018 Aug 23
0
[PATCH v5] v2v: Add --print-estimate option to print copy size estimate.
...p";
[ L"print-source" ], Getopt.Set print_source,
s_"Print source and stop";
[ L"qemu-boot" ], Getopt.Set qemu_boot, s_"Boot in qemu (-o qemu only)";
@@ -326,6 +330,7 @@ read the man page virt-v2v(1).
let output_options = List.rev !output_options in
let output_password = !output_password in
let output_storage = !output_storage in
+ let print_estimate = !print_estimate in
let print_source = !print_source in
let qemu_boot = !qemu_boot in
let root_choice = !root_choice in
@@ -353,6 +358,12 @@ read...
2018 Aug 23
2
[PATCH v4] v2v: Add --print-estimate option to print copy size estimate.
v4:
- Same as v3, but depends on and uses new --machine-readable work.
Rich.
2018 Aug 24
2
[PATCH v6] v2v: Add --print-estimate option to print copy size estimate.
v6:
- Make the text output a bit nicer.
- Changes as suggested to Measure_disk module temp file & json parsing.
- Use jq to test JSON output.
- Retest.
2018 Aug 23
2
[PATCH v5] v2v: Add --print-estimate option to print copy size estimate.
v5:
- Normal output modified approx as suggested in previous email.
- Machine readable output uses JSON.
2008 Jul 10
0
[LLVMdev] Including svn version number in --version output
...$(DEVPHASE)
>>> +.PHONY: version.o
>>> +version.o:
>>> $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
>>> -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
>>> + -DSVNVER=$(SVNVER_s) \
>>> -DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
>>>
>>> gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $
>>> (TM_H) \
>>>
>>>
>>>
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://l...
2018 Jun 05
4
[PATCH 0/3] v2v: Various refactorings.
Use -ip instead of --password-file, and various refactorings.
It strikes me that we should probably deprecate and eventually remove
virt-v2v-copy-to-local. With the introduction of the new SSH and VDDK
transports, and with RHEL 5 Xen becoming more irrelevant, it's no
longer needed.
Rich.