Re: [Xen-devel] [PATCH v5 05/14] libxl: Load guest BIOS from file

2016-07-07 Thread Wei Liu
On Wed, Jun 22, 2016 at 06:15:36PM +0100, Anthony PERARD wrote: > The path to the BIOS blob can be overriden by the xl's > bios_path_override option, or provided by u.hvm.bios_firmware in the > domain_build_info struct by other libxl user. > > Signed-off-by: Anthony PERARD > > --- > Changes in V

Re: [Xen-devel] [PATCH v5 05/14] libxl: Load guest BIOS from file

2016-06-24 Thread Anthony PERARD
On Fri, Jun 24, 2016 at 01:23:19AM -0600, Jan Beulich wrote: > >>> On 22.06.16 at 19:15, wrote: > > --- a/tools/libxl/libxl_paths.c > > +++ b/tools/libxl/libxl_paths.c > > @@ -35,6 +35,16 @@ const char *libxl__run_dir_path(void) > > return XEN_RUN_DIR; > > } > > > > +const char *libxl__sea

Re: [Xen-devel] [PATCH v5 05/14] libxl: Load guest BIOS from file

2016-06-24 Thread Jan Beulich
>>> On 22.06.16 at 19:15, wrote: > --- a/tools/libxl/libxl_paths.c > +++ b/tools/libxl/libxl_paths.c > @@ -35,6 +35,16 @@ const char *libxl__run_dir_path(void) > return XEN_RUN_DIR; > } > > +const char *libxl__seabios_path(void) > +{ > +return SEABIOS_PATH; > +} > + > +const char *libx

[Xen-devel] [PATCH v5 05/14] libxl: Load guest BIOS from file

2016-06-22 Thread Anthony PERARD
The path to the BIOS blob can be overriden by the xl's bios_path_override option, or provided by u.hvm.bios_firmware in the domain_build_info struct by other libxl user. Signed-off-by: Anthony PERARD --- Changes in V5: - man page, use B<> to highlight config option in description. - rename confi