Displaying 5 results from an estimated 5 matches for "use_suggest".
2016 Jun 01
2
[PATCH v2] rescue: add --autosysroot option RHBZ#1183493
--autosysroot option uses suggestions to user on how to mount filesystems
and change root suggested by --suggest option in virt-rescue.
Commands are passed on kernel command line in format
guestfs_command=command;. Command ends with a semicolon and there can be
multiple commands specified. These are executed just before bash starts.
On successfull run user is presented directly with bash in
2016 Jun 01
0
[PATCH v2] rescue: add --autosysroot option RHBZ#1183493
...ratch_disks (int n, struct drv **drvs);
-static void do_suggestion (struct drv *drvs);
+static char ** do_suggestion (struct drv *drvs);
/* Currently open libguestfs handle. */
guestfs_h *g;
@@ -50,6 +50,9 @@ int echo_keys = 0;
const char *libvirt_uri = NULL;
int inspector = 0;
+static void use_suggestions (char **cmds);
+static void parse_opts(int argc, char * argv[]);
+
static void __attribute__((noreturn))
usage (int status)
{
@@ -65,6 +68,8 @@ usage (int status)
"Options:\n"
" -a|--add image Add image\n"
" --appe...
2016 May 24
1
[PATCH] rescue: add --autosysroot option RHBZ#1183493
--autosysroot option uses suggestions to user on how to mount filesystems
and change root suggested by --suggest option in virt-rescue.
Commands are passed on kernel command line in format
guestfs_command=command;. Command ends with a semicolon and there can be
multiple commands specified. These are executed just before bash starts.
On successfull run user is presented directly with bash in
2016 Jun 09
2
Re: [PATCH v2] rescue: add --autosysroot option RHBZ#1183493
...ic void do_suggestion (struct drv *drvs);
> +static char ** do_suggestion (struct drv *drvs);
>
> /* Currently open libguestfs handle. */
> guestfs_h *g;
> @@ -50,6 +50,9 @@ int echo_keys = 0;
> const char *libvirt_uri = NULL;
> int inspector = 0;
>
> +static void use_suggestions (char **cmds);
> +static void parse_opts(int argc, char * argv[]);
> +
> static void __attribute__((noreturn))
> usage (int status)
> {
> @@ -65,6 +68,8 @@ usage (int status)
> "Options:\n"
> " -a|--add image Add ima...
2016 Jun 16
0
Re: [PATCH v2] rescue: add --autosysroot option RHBZ#1183493
...>> +static char ** do_suggestion (struct drv *drvs);
>>
>> /* Currently open libguestfs handle. */
>> guestfs_h *g;
>> @@ -50,6 +50,9 @@ int echo_keys = 0;
>> const char *libvirt_uri = NULL;
>> int inspector = 0;
>>
>> +static void use_suggestions (char **cmds);
>> +static void parse_opts(int argc, char * argv[]);
>> +
>> static void __attribute__((noreturn))
>> usage (int status)
>> {
>> @@ -65,6 +68,8 @@ usage (int status)
>> "Options:\n"
>>...