Displaying 6 results from an estimated 6 matches for "extra_config".
Did you mean:
ext2_config
2012 May 15
6
[PATCH 0 of 2 v2] Add vncviewer xm compatibility options
Changes since v1:
- Removed libxl vncviewer related dependencies
- The vncviewer function was modified to accept a domid instead of domspec;
- main_vncviewer was updated to reflect the new use.
- A domain_create structure is now passed to the parse_config_data where required/feasible (NULL otherwise)
- xl restore now have long options for vncviewer/vncviewer-autopass; docs updated.
- Updated
2012 Apr 03
3
[PATCH] xl: Don't require a config file for cpupools
...+0100
+++ b/tools/libxl/xl_cmdimpl.c Tue Apr 03 19:28:04 2012 +0100
@@ -5407,7 +5407,7 @@ int main_tmem_freeable(int argc, char **
int main_cpupoolcreate(int argc, char **argv)
{
- const char *filename = NULL;
+ const char *filename = NULL, *config_src=NULL;
const char *p;
char extra_config[1024];
int opt;
@@ -5471,23 +5471,26 @@ int main_cpupoolcreate(int argc, char **
optind++;
}
- if (!filename) {
- help("cpupool-create");
- return -ERROR_FAIL;
- }
-
- if (libxl_read_file_contents(ctx, filename, (void **)&config_data, &c...
2012 Mar 20
5
[PATCH] Add vncviewer xm compatibility options the 'xl create' command
...ools/libxl/xl_cmdimpl.c Fri Mar 16 15:24:25 2012 +0000
+++ b/tools/libxl/xl_cmdimpl.c Tue Mar 20 15:36:49 2012 +0000
@@ -1347,6 +1347,8 @@
int dryrun;
int quiet;
int console_autoconnect;
+ int vncviewer;
+ int vncviewer_autopass;
const char *config_file;
const char *extra_config; /* extra config string */
const char *restore_file;
@@ -3306,11 +3308,12 @@
int main_create(int argc, char **argv)
{
const char *filename = NULL;
+ char *dom = NULL;
char *p;
char extra_config[1024];
struct domain_create dom_info;
int paused = 0, debug = 0, daemo...
2011 Apr 18
7
[PATCH] tools: xl: on create, if debug && !daemonize, wait for domain destroy in the foreground
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1303143831 -3600
# Node ID 31b98feb0eb6a50fe9e664a31feaa32ad3dac7cc
# Parent 05abea47f4dc670974cd513a0e74db54d22eacc9
tools: xl: on create, if debug && !daemonize, wait for domain destroy in the foreground
Perhaps this should be a separate option but I find that when I''m debugging xl
in the
2012 Sep 11
4
[PATCH] libxl: Tolerate xl config files missing trailing newline
I wrote:
> Also I wrote:
> > However, xl fails on config files which are missing the final
> > newline. This should be fixed for 4.2.
>
> My patch for this didn''t make it into 4.2 RC4.
Should this go into 4.2.0 or be held for 4.2.1 (or is it not 4.2.x
material at all) ?
Ian.
From: Ian Jackson <ian.jackson@eu.citrix.com>
Subject: [PATCH] libxl: Tolerate xl
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have
been applied. These are the tested and updated remainder, addressing
the previous comments.
1 Preparatory work.
2-4 The new parser and its documentation.
5-6 Replace old parsers with calls to the new one.
7-8 Two features, one of them essential.
9 Basic test suite for disk string parsing, as adhoc script.