2015-04-28 20:32:15

by Andrey Skvortsov

[permalink] [raw]
Subject: [PATCH] arm: vdso: .gitignore: ignore generated vdso.so.raw and vdsomunge

After kernel is built 'git status' reports:

# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# arch/arm/vdso/vdso.so.raw
# arch/arm/vdso/vdsomunge

These files are created during build process and removed with 'make
clean'. This patch makes git to ignore them.

Signed-off-by: Andrey Skvortsov <[email protected]>
---
arch/arm/vdso/.gitignore | 2 ++
1 file changed, 2 insertions(+)

diff --git a/arch/arm/vdso/.gitignore b/arch/arm/vdso/.gitignore
index f8b69d8..6b47f6e 100644
--- a/arch/arm/vdso/.gitignore
+++ b/arch/arm/vdso/.gitignore
@@ -1 +1,3 @@
vdso.lds
+vdso.so.raw
+vdsomunge
--
2.1.4


2015-04-28 20:40:51

by Lynch, Nathan

[permalink] [raw]
Subject: Re: [PATCH] arm: vdso: .gitignore: ignore generated vdso.so.raw and vdsomunge

On 04/28/2015 03:32 PM, Andrey Skvortsov wrote:
> After kernel is built 'git status' reports:
>
> # Untracked files:
> # (use "git add <file>..." to include in what will be committed)
> #
> # arch/arm/vdso/vdso.so.raw
> # arch/arm/vdso/vdsomunge
>
> These files are created during build process and removed with 'make
> clean'. This patch makes git to ignore them.

Thanks, but this should be fixed already by:

2b507a2d9c7f ARM: 8343/1: VDSO: add build artifacts to .gitignore