[PATCH 1 of 2] gitignore: ignore GCOV output

2017-02-07 Thread Henning Schild
Signed-off-by: Henning Schild diff --git a/.gitignore b/.gitignore --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ *.mod.[co] *.cmd *.bin +*.gcno .tmp_versions *.dtb *.dtb.S -- You received this message because you are subscribed to the Google Groups

[PATCH 2 of 2] make: do not support GCOV in out of kernel components

2017-02-07 Thread Henning Schild
If the root-cell kernel is built with GCOV (CONFIG_GCOV_PROFILE_ALL) kbuild will build everything with GCOV support. For the driver it is ok to inherit that, but for out of kernel parts like hypervisor, tools, inmates it is not. Signed-off-by: Henning Schild diff

[siemens/jailhouse] d5776f: core: ivshmem: Move shared memory parameters into ...

2017-02-07 Thread GitHub
Branch: refs/heads/wip/ivshmem2 Home: https://github.com/siemens/jailhouse Commit: d5776fcc19ea6a8b125581b78806b25b87c8ff6b https://github.com/siemens/jailhouse/commit/d5776fcc19ea6a8b125581b78806b25b87c8ff6b Author: Jan Kiszka Date: 2017-02-07 (Tue,

Re: [PATCH 1 of 2] gitignore: ignore GCOV output

2017-02-07 Thread Henning Schild
On Wed, 8 Feb 2017 00:02:39 +0900 Valentine Sinitsyn wrote: > Hi Henning, > > I recall that there was a policy against adding tools-generated files > to .gitignore, as .config/git/ignore seems more appropriate > (different people use different tools). Well this

Re: [PATCH 1 of 2] gitignore: ignore GCOV output

2017-02-07 Thread Valentine Sinitsyn
Hi Henning, I recall that there was a policy against adding tools-generated files to .gitignore, as .config/git/ignore seems more appropriate (different people use different tools). On 07.02.2017 21:32, Henning Schild wrote: Signed-off-by: Henning Schild diff

Re: [PATCH 2 of 2] make: do not support GCOV in out of kernel components

2017-02-07 Thread Jan Kiszka
On 2017-02-07 13:32, Henning Schild wrote: > If the root-cell kernel is built with GCOV (CONFIG_GCOV_PROFILE_ALL) > kbuild will build everything with GCOV support. For the driver it is > ok to inherit that, but for out of kernel parts like hypervisor, > tools, inmates it is not. > >

Re: [PATCH 1 of 2] gitignore: ignore GCOV output

2017-02-07 Thread Jan Kiszka
On 2017-02-07 16:52, Henning Schild wrote: > On Wed, 8 Feb 2017 00:02:39 +0900 > Valentine Sinitsyn wrote: > >> Hi Henning, >> >> I recall that there was a policy against adding tools-generated files >> to .gitignore, as .config/git/ignore seems more appropriate >>