All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] .gitignore: sort normal pattern rules alphabetically
@ 2018-06-11  7:21 Masahiro Yamada
  2018-06-11  7:21 ` [U-Boot] [PATCH 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore Masahiro Yamada
  2018-06-19 18:41 ` [U-Boot] [U-Boot, 1/2] .gitignore: sort normal pattern rules alphabetically Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Masahiro Yamada @ 2018-06-11  7:21 UTC (permalink / raw)
  To: u-boot

Follow Linux commit 1377dd3e2987 (".gitignore: sort normal pattern
rules alphabetically").

This would allow us to easily catch duplicated patterns if any.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 .gitignore | 30 +++++++++++++-----------------
 1 file changed, 13 insertions(+), 17 deletions(-)

diff --git a/.gitignore b/.gitignore
index 9110eda..4d4c486 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,29 +3,29 @@
 # subdirectories here. Add them in the ".gitignore" file
 # in that subdirectory instead.
 #
-# Normal rules
+# Normal rules (sorted alphabetically)
 #
 .*
-*.o
-*.o.*
 *.a
-*.s
-*.su
-*.mod.c
+*.bin
+*.cfgtmp
+*.elf
+*.exe
+*.gcda
+*.gcno
 *.i
 *.lex.c
 *.lst
+*.mod.c
+*.o
+*.o.*
 *.order
-*.elf
-*.swp
-*.bin
 *.patch
-*.cfgtmp
+*.s
+*.su
+*.swp
 *.tab.[ch]
 
-# host programs on Cygwin
-*.exe
-
 # Build tree
 /build-*
 
@@ -86,7 +86,3 @@ GTAGS
 *.orig
 *~
 \#*#
-
-# gcc code coverage files
-*.gcda
-*.gcno
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore
  2018-06-11  7:21 [U-Boot] [PATCH 1/2] .gitignore: sort normal pattern rules alphabetically Masahiro Yamada
@ 2018-06-11  7:21 ` Masahiro Yamada
  2018-06-19 18:41   ` [U-Boot] [U-Boot, " Tom Rini
  2018-06-19 18:41 ` [U-Boot] [U-Boot, 1/2] .gitignore: sort normal pattern rules alphabetically Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Masahiro Yamada @ 2018-06-11  7:21 UTC (permalink / raw)
  To: u-boot

Follow Linux commit 10b62a2f785a (".gitignore: move *.dtb and *.dtb.S
patterns to the top-level .gitignore").

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 .gitignore                     | 2 ++
 arch/arc/dts/.gitignore        | 1 -
 arch/arm/dts/.gitignore        | 1 -
 arch/microblaze/dts/.gitignore | 1 -
 arch/mips/dts/.gitignore       | 1 -
 arch/nios2/dts/.gitignore      | 1 -
 arch/sandbox/dts/.gitignore    | 1 -
 arch/x86/dts/.gitignore        | 1 -
 dts/.gitignore                 | 2 --
 9 files changed, 2 insertions(+), 9 deletions(-)
 delete mode 100644 arch/arc/dts/.gitignore
 delete mode 100644 arch/arm/dts/.gitignore
 delete mode 100644 arch/microblaze/dts/.gitignore
 delete mode 100644 arch/mips/dts/.gitignore
 delete mode 100644 arch/nios2/dts/.gitignore
 delete mode 100644 arch/sandbox/dts/.gitignore
 delete mode 100644 arch/x86/dts/.gitignore
 delete mode 100644 dts/.gitignore

diff --git a/.gitignore b/.gitignore
index 4d4c486..6bb0ade 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,8 @@
 *.a
 *.bin
 *.cfgtmp
+*.dtb
+*.dtb.S
 *.elf
 *.exe
 *.gcda
diff --git a/arch/arc/dts/.gitignore b/arch/arc/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/arc/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/arch/arm/dts/.gitignore b/arch/arm/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/arm/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/arch/microblaze/dts/.gitignore b/arch/microblaze/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/microblaze/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/arch/mips/dts/.gitignore b/arch/mips/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/mips/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/arch/nios2/dts/.gitignore b/arch/nios2/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/nios2/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/arch/sandbox/dts/.gitignore b/arch/sandbox/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/sandbox/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/arch/x86/dts/.gitignore b/arch/x86/dts/.gitignore
deleted file mode 100644
index b60ed20..0000000
--- a/arch/x86/dts/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.dtb
diff --git a/dts/.gitignore b/dts/.gitignore
deleted file mode 100644
index 1b37180..0000000
--- a/dts/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*.dtb
-*.dtb.S
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [U-Boot, 1/2] .gitignore: sort normal pattern rules alphabetically
  2018-06-11  7:21 [U-Boot] [PATCH 1/2] .gitignore: sort normal pattern rules alphabetically Masahiro Yamada
  2018-06-11  7:21 ` [U-Boot] [PATCH 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore Masahiro Yamada
@ 2018-06-19 18:41 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2018-06-19 18:41 UTC (permalink / raw)
  To: u-boot

On Mon, Jun 11, 2018 at 04:21:49PM +0900, Masahiro Yamada wrote:

> Follow Linux commit 1377dd3e2987 (".gitignore: sort normal pattern
> rules alphabetically").
> 
> This would allow us to easily catch duplicated patterns if any.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180619/201728d3/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [U-Boot, 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore
  2018-06-11  7:21 ` [U-Boot] [PATCH 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore Masahiro Yamada
@ 2018-06-19 18:41   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2018-06-19 18:41 UTC (permalink / raw)
  To: u-boot

On Mon, Jun 11, 2018 at 04:21:50PM +0900, Masahiro Yamada wrote:

> Follow Linux commit 10b62a2f785a (".gitignore: move *.dtb and *.dtb.S
> patterns to the top-level .gitignore").
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180619/e2b25aa1/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-19 18:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-11  7:21 [U-Boot] [PATCH 1/2] .gitignore: sort normal pattern rules alphabetically Masahiro Yamada
2018-06-11  7:21 ` [U-Boot] [PATCH 2/2] .gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore Masahiro Yamada
2018-06-19 18:41   ` [U-Boot] [U-Boot, " Tom Rini
2018-06-19 18:41 ` [U-Boot] [U-Boot, 1/2] .gitignore: sort normal pattern rules alphabetically Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.