search for: libxl__bootloader_st

Displaying 1 result from an estimated 1 matches for "libxl__bootloader_st".

2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...otloader.c --- a/tools/libxl/libxl_bootloader.c Thu May 17 16:39:51 2012 +0100 +++ b/tools/libxl/libxl_bootloader.c Thu May 17 17:51:32 2012 +0100 @@ -43,7 +43,8 @@ static void bootloader_arg(libxl__bootlo bl->args[bl->nargs++] = arg; } -static void make_bootloader_args(libxl__gc *gc, libxl__bootloader_state *bl) +static void make_bootloader_args(libxl__gc *gc, libxl__bootloader_state *bl, + const char *bootloader_path) { const libxl_domain_build_info *info = bl->info; @@ -53,12 +54,12 @@ static void make_bootloader_args(libxl__ #define ARG(arg) bootload...