public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] ignore soc asm-offsets.s
@ 2011-09-12  4:47 Mike Frysinger
  2011-09-21 21:02 ` Wolfgang Denk
  2011-09-29 12:40 ` Laurence Withers
  0 siblings, 2 replies; 4+ messages in thread
From: Mike Frysinger @ 2011-09-12  4:47 UTC (permalink / raw)
  To: u-boot

Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of
asm-offsets.s for SoC dirs, but missed adding it to the ignore
list which makes it show up in `git status`.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 .gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index dbf545f..2a82cd9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -46,6 +46,7 @@
 
 /include/generated/
 /lib/asm-offsets.s
+/arch/*/cpu/asm-offsets.s
 
 # stgit generated dirs
 patches-*
-- 
1.7.6

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

* [U-Boot] [PATCH] ignore soc asm-offsets.s
  2011-09-12  4:47 [U-Boot] [PATCH] ignore soc asm-offsets.s Mike Frysinger
@ 2011-09-21 21:02 ` Wolfgang Denk
  2011-09-29 12:40 ` Laurence Withers
  1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2011-09-21 21:02 UTC (permalink / raw)
  To: u-boot

Dear Mike Frysinger,

In message <1315802844-24604-1-git-send-email-vapier@gentoo.org> you wrote:
> Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of
> asm-offsets.s for SoC dirs, but missed adding it to the ignore
> list which makes it show up in `git status`.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
>  .gitignore |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Der Horizont vieler Menschen ist ein Kreis mit Radius Null --
und das nennen sie ihren Standpunkt.

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

* [U-Boot] [PATCH] ignore soc asm-offsets.s
  2011-09-12  4:47 [U-Boot] [PATCH] ignore soc asm-offsets.s Mike Frysinger
  2011-09-21 21:02 ` Wolfgang Denk
@ 2011-09-29 12:40 ` Laurence Withers
  2011-09-29 14:30   ` Mike Frysinger
  1 sibling, 1 reply; 4+ messages in thread
From: Laurence Withers @ 2011-09-29 12:40 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 12, 2011 at 12:47:24AM -0400, Mike Frysinger wrote:
> Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of
> asm-offsets.s for SoC dirs, but missed adding it to the ignore
> list which makes it show up in `git status`.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
>  .gitignore |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/.gitignore b/.gitignore
> index dbf545f..2a82cd9 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -46,6 +46,7 @@
>  
>  /include/generated/
>  /lib/asm-offsets.s
> +/arch/*/cpu/asm-offsets.s
>  
>  # stgit generated dirs
>  patches-*

Dear Mike,

There appear to be some SoCs which have further subdirectories, e.g.:

lwithers at rhodium u-boot $ git status
# On branch lw-diamond
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#       arch/arm/cpu/arm926ejs/davinci/asm-offsets.s
nothing added to commit but untracked files present (use "git add" to track)

We could ignore all files named asm-offsets.s , or perhaps all files under
arch ?

Bye for now,
-- 
Laurence Withers, <lwithers@guralp.com>                http://www.guralp.com/
Direct tel:+447753988197 or tel:+443333408643               Software Engineer
General support queries: <support@guralp.com>         CMG-DCM CMG-EAM CMG-NAM

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

* [U-Boot] [PATCH] ignore soc asm-offsets.s
  2011-09-29 12:40 ` Laurence Withers
@ 2011-09-29 14:30   ` Mike Frysinger
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger @ 2011-09-29 14:30 UTC (permalink / raw)
  To: u-boot

On Thursday, September 29, 2011 08:40:33 Laurence Withers wrote:
> On Mon, Sep 12, 2011 at 12:47:24AM -0400, Mike Frysinger wrote:
> > Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of
> > asm-offsets.s for SoC dirs, but missed adding it to the ignore
> > list which makes it show up in `git status`.
> > 
> > --- a/.gitignore
> > +++ b/.gitignore
> > 
> >  /lib/asm-offsets.s
> > +/arch/*/cpu/asm-offsets.s
> 
> There appear to be some SoCs which have further subdirectories, e.g.:
> 
> lwithers at rhodium u-boot $ git status
> # On branch lw-diamond
> # Untracked files:
> #   (use "git add <file>..." to include in what will be committed)
> #
> #       arch/arm/cpu/arm926ejs/davinci/asm-offsets.s
> nothing added to commit but untracked files present (use "git add" to
> track)
> 
> We could ignore all files named asm-offsets.s , or perhaps all files under
> arch ?

off the top of my head, i can't see a problem with ignoring asm-offsets.s in 
the whole tree.  want to send a patch and see what Wolfgang says ?
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20110929/c6bde4ed/attachment.pgp 

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

end of thread, other threads:[~2011-09-29 14:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-12  4:47 [U-Boot] [PATCH] ignore soc asm-offsets.s Mike Frysinger
2011-09-21 21:02 ` Wolfgang Denk
2011-09-29 12:40 ` Laurence Withers
2011-09-29 14:30   ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox