Re: [PATCH v10 08/12] xen: add /buildinfo/config entry to hypervisor filesystem

2020-06-02 Thread Jürgen Groß
On 02.06.20 11:03, Andrew Cooper wrote: On 19/05/2020 08:21, Juergen Gross wrote: diff --git a/xen/common/Makefile b/xen/common/Makefile index bf7d0e25a3..3d61239fbf 100644 --- a/xen/common/Makefile +++ b/xen/common/Makefile @@ -1,6 +1,7 @@ obj-$(CONFIG_ARGO) += argo.o obj-y += bitmap.o

Re: [PATCH v10 08/12] xen: add /buildinfo/config entry to hypervisor filesystem

2020-06-02 Thread Andrew Cooper
On 19/05/2020 08:21, Juergen Gross wrote: > diff --git a/xen/common/Makefile b/xen/common/Makefile > index bf7d0e25a3..3d61239fbf 100644 > --- a/xen/common/Makefile > +++ b/xen/common/Makefile > @@ -1,6 +1,7 @@ > obj-$(CONFIG_ARGO) += argo.o > obj-y += bitmap.o > obj-y += bsearch.o >

[PATCH v10 08/12] xen: add /buildinfo/config entry to hypervisor filesystem

2020-05-19 Thread Juergen Gross
Add the /buildinfo/config entry to the hypervisor filesystem. This entry contains the .config file used to build the hypervisor. Signed-off-by: Juergen Gross Reviewed-by: Jan Beulich --- V3: - store data in gzip format - use binfile mechanism to create data file - move code to kernel.c V6: -