All of lore.kernel.org
 help / color / mirror / Atom feed
From: Timur Tabi <timur@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH] Add .gitignore files
Date: Tue, 20 Feb 2007 17:26:22 -0600	[thread overview]
Message-ID: <11720139822982-git-send-email-timur@freescale.com> (raw)

Add various .gitignore files for all of the generated targets.  This prevents these files
from being accidentally committed and showing up in git-status.

Signed-off-by: Timur Tabi <timur@freescale.com>
---
 .gitignore                        |    5 +++++
 examples/.gitignore               |    4 ++++
 include/.gitignore                |    5 +++++
 include/asm-arm/.gitignore        |    1 +
 include/asm-avr32/.gitignore      |    1 +
 include/asm-blackfin/.gitignore   |    1 +
 include/asm-i386/.gitignore       |    1 +
 include/asm-m68k/.gitignore       |    1 +
 include/asm-microblaze/.gitignore |    1 +
 include/asm-mips/.gitignore       |    1 +
 include/asm-nios/.gitignore       |    1 +
 include/asm-nios2/.gitignore      |    1 +
 include/asm-ppc/.gitignore        |    1 +
 tools/.gitignore                  |    7 +++++++
 14 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 examples/.gitignore
 create mode 100644 include/.gitignore
 create mode 100644 include/asm-arm/.gitignore
 create mode 100644 include/asm-avr32/.gitignore
 create mode 100644 include/asm-blackfin/.gitignore
 create mode 100644 include/asm-i386/.gitignore
 create mode 100644 include/asm-m68k/.gitignore
 create mode 100644 include/asm-microblaze/.gitignore
 create mode 100644 include/asm-mips/.gitignore
 create mode 100644 include/asm-nios/.gitignore
 create mode 100644 include/asm-nios2/.gitignore
 create mode 100644 include/asm-ppc/.gitignore
 create mode 100644 tools/.gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5883e45
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+.*
+*.o
+*.a
+System.map
+u-boot*
diff --git a/examples/.gitignore b/examples/.gitignore
new file mode 100644
index 0000000..f715e1b
--- /dev/null
+++ b/examples/.gitignore
@@ -0,0 +1,4 @@
+*.bin
+*.srec
+hello_world
+sched
diff --git a/include/.gitignore b/include/.gitignore
new file mode 100644
index 0000000..8d2fb78
--- /dev/null
+++ b/include/.gitignore
@@ -0,0 +1,5 @@
+bmp_logo.h
+config.h
+config.mk
+version_autogenerated.h
+asm
diff --git a/include/asm-arm/.gitignore b/include/asm-arm/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-arm/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-avr32/.gitignore b/include/asm-avr32/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-avr32/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-blackfin/.gitignore b/include/asm-blackfin/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-blackfin/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-i386/.gitignore b/include/asm-i386/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-i386/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-m68k/.gitignore b/include/asm-m68k/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-m68k/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-microblaze/.gitignore b/include/asm-microblaze/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-microblaze/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-mips/.gitignore b/include/asm-mips/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-mips/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-nios/.gitignore b/include/asm-nios/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-nios/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-nios2/.gitignore b/include/asm-nios2/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-nios2/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/include/asm-ppc/.gitignore b/include/asm-ppc/.gitignore
new file mode 100644
index 0000000..1689398
--- /dev/null
+++ b/include/asm-ppc/.gitignore
@@ -0,0 +1 @@
+arch
diff --git a/tools/.gitignore b/tools/.gitignore
new file mode 100644
index 0000000..6ef414a
--- /dev/null
+++ b/tools/.gitignore
@@ -0,0 +1,7 @@
+bmp_logo
+crc32.c
+envcrc
+environment.c
+gen_eth_addr
+img2srec
+mkimage
-- 
1.5.0

             reply	other threads:[~2007-02-20 23:26 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-20 23:26 Timur Tabi [this message]
2007-02-20 23:47 ` [U-Boot-Users] [PATCH] Add .gitignore files Grant Likely
2007-02-26 13:15   ` Wolfgang Denk
2007-02-26 16:58     ` Timur Tabi
2007-02-26 21:38       ` Wolfgang Denk
2007-02-26 21:46         ` Timur Tabi
2007-02-26 22:00           ` Jerry Van Baren
2007-02-27  0:35         ` Grant Likely
2007-02-27  1:19           ` Andy Fleming
2007-02-27  1:25           ` Wolfgang Denk
2007-02-27  1:40             ` Andy Fleming
2007-02-27  6:42             ` Grant Likely
2007-02-27  7:01               ` Stefan Roese
2007-02-27  7:15                 ` Grant Likely
2007-02-27  7:33                   ` Stefan Roese
2007-02-27  7:42                     ` Grant Likely
2007-02-27 14:56                 ` Timur Tabi
2007-02-27 15:48                   ` Kumar Gala
2007-02-27 22:30                   ` Haavard Skinnemoen
2007-02-26 17:54     ` Scott Wood
2007-02-26 13:11 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2007-09-05 14:01 Grant Likely

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11720139822982-git-send-email-timur@freescale.com \
    --to=timur@freescale.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.