2013-07-25 12:20:16

by Mischa Jonker

[permalink] [raw]
Subject: [PATCH] ARC: add .gitignore files

Ignore the following files:
* devicetree .dtb, .dtb.S files
* vmlinux.lds

Signed-off-by: Mischa Jonker <[email protected]>
---
arch/arc/boot/dts/.gitignore | 2 ++
arch/arc/kernel/.gitignore | 1 +
2 files changed, 3 insertions(+)
create mode 100644 arch/arc/boot/dts/.gitignore
create mode 100644 arch/arc/kernel/.gitignore

diff --git a/arch/arc/boot/dts/.gitignore b/arch/arc/boot/dts/.gitignore
new file mode 100644
index 0000000..1b37180
--- /dev/null
+++ b/arch/arc/boot/dts/.gitignore
@@ -0,0 +1,2 @@
+*.dtb
+*.dtb.S
diff --git a/arch/arc/kernel/.gitignore b/arch/arc/kernel/.gitignore
new file mode 100644
index 0000000..c5f676c
--- /dev/null
+++ b/arch/arc/kernel/.gitignore
@@ -0,0 +1 @@
+vmlinux.lds
--
1.7.9.5


2013-07-25 15:50:00

by Vineet Gupta

[permalink] [raw]
Subject: Re: [PATCH] ARC: add .gitignore files

On 07/25/2013 05:20 AM, Mischa Jonker wrote:
> Ignore the following files:
> * devicetree .dtb, .dtb.S files
> * vmlinux.lds
>
> Signed-off-by: Mischa Jonker <[email protected]>

I have a nearly same patch in my unpushed -next tree already.

-Vineet