mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
@ 2008-07-30  9:56 Florian Fainelli
  2008-07-30 11:26 ` Sam Ravnborg
  0 siblings, 1 reply; 7+ messages in thread
From: Florian Fainelli @ 2008-07-30  9:56 UTC (permalink / raw)
  To: David S. Miller; +Cc: sparclinux, LKML

Sorry for the previous version, I forgot reading that .gitignore files
should be per-directory in this case.
--
From: Florian Fainelli <florian.fainelli@telecomint.eu>
Subject: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file

Add drivers/video/console/promcon_tbl.c to the list of ignored files.
This file is generated by conmakehash against drivers/video/console/prom.uni.

Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
---
diff --git a/drivers/video/console/.gitignore b/drivers/video/console/.gitignore
new file mode 100644
index 0000000..ad0ad9b
--- /dev/null
+++ b/drivers/video/console/.gitignore
@@ -0,0 +1,2 @@
+# Generated conmakehash files
+drivers/video/console/promcon_tbl.c

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

* Re: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
  2008-07-30  9:56 [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file Florian Fainelli
@ 2008-07-30 11:26 ` Sam Ravnborg
  2008-07-30 11:29   ` Florian Fainelli
  2008-07-30 15:41   ` Adrian Bunk
  0 siblings, 2 replies; 7+ messages in thread
From: Sam Ravnborg @ 2008-07-30 11:26 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: David S. Miller, sparclinux, LKML

On Wed, Jul 30, 2008 at 11:56:13AM +0200, Florian Fainelli wrote:
> Sorry for the previous version, I forgot reading that .gitignore files
> should be per-directory in this case.
> --
> From: Florian Fainelli <florian.fainelli@telecomint.eu>
> Subject: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
> 
> Add drivers/video/console/promcon_tbl.c to the list of ignored files.
> This file is generated by conmakehash against drivers/video/console/prom.uni.
> 
> Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
> ---
> diff --git a/drivers/video/console/.gitignore b/drivers/video/console/.gitignore
> new file mode 100644
> index 0000000..ad0ad9b
> --- /dev/null
> +++ b/drivers/video/console/.gitignore
> @@ -0,0 +1,2 @@
> +# Generated conmakehash files
> +drivers/video/console/promcon_tbl.c

Did you test this?
I recall you should specify filenames relative to the
path of .gitignore.

	Sam

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

* Re: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
  2008-07-30 11:26 ` Sam Ravnborg
@ 2008-07-30 11:29   ` Florian Fainelli
  2008-07-30 15:41   ` Adrian Bunk
  1 sibling, 0 replies; 7+ messages in thread
From: Florian Fainelli @ 2008-07-30 11:29 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: David S. Miller, sparclinux, LKML

Hi Sam,

Le Wednesday 30 July 2008 13:26:20 Sam Ravnborg, vous avez écrit :
> Did you test this?
> I recall you should specify filenames relative to the
> path of .gitignore.

Yes it works here with git client version 1.5.6.2.

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

* Re: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
  2008-07-30 11:26 ` Sam Ravnborg
  2008-07-30 11:29   ` Florian Fainelli
@ 2008-07-30 15:41   ` Adrian Bunk
  2008-07-30 15:59     ` Sam Ravnborg
  1 sibling, 1 reply; 7+ messages in thread
From: Adrian Bunk @ 2008-07-30 15:41 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: Florian Fainelli, David S. Miller, sparclinux, LKML

On Wed, Jul 30, 2008 at 01:26:20PM +0200, Sam Ravnborg wrote:
> On Wed, Jul 30, 2008 at 11:56:13AM +0200, Florian Fainelli wrote:
> > Sorry for the previous version, I forgot reading that .gitignore files
> > should be per-directory in this case.
> > --
> > From: Florian Fainelli <florian.fainelli@telecomint.eu>
> > Subject: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
> > 
> > Add drivers/video/console/promcon_tbl.c to the list of ignored files.
> > This file is generated by conmakehash against drivers/video/console/prom.uni.
> > 
> > Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
> > ---
> > diff --git a/drivers/video/console/.gitignore b/drivers/video/console/.gitignore
> > new file mode 100644
> > index 0000000..ad0ad9b
> > --- /dev/null
> > +++ b/drivers/video/console/.gitignore
> > @@ -0,0 +1,2 @@
> > +# Generated conmakehash files
> > +drivers/video/console/promcon_tbl.c
> 
> Did you test this?
> I recall you should specify filenames relative to the
> path of .gitignore.

According to the manpage both should work.

But I'd personally prefer it without a path since that's more robust in 
case of directory moves.

> 	Sam

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* Re: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
  2008-07-30 15:41   ` Adrian Bunk
@ 2008-07-30 15:59     ` Sam Ravnborg
  2008-07-30 21:30       ` Florian Fainelli
  0 siblings, 1 reply; 7+ messages in thread
From: Sam Ravnborg @ 2008-07-30 15:59 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Florian Fainelli, David S. Miller, sparclinux, LKML

On Wed, Jul 30, 2008 at 06:41:27PM +0300, Adrian Bunk wrote:
> On Wed, Jul 30, 2008 at 01:26:20PM +0200, Sam Ravnborg wrote:
> > On Wed, Jul 30, 2008 at 11:56:13AM +0200, Florian Fainelli wrote:
> > > Sorry for the previous version, I forgot reading that .gitignore files
> > > should be per-directory in this case.
> > > --
> > > From: Florian Fainelli <florian.fainelli@telecomint.eu>
> > > Subject: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
> > > 
> > > Add drivers/video/console/promcon_tbl.c to the list of ignored files.
> > > This file is generated by conmakehash against drivers/video/console/prom.uni.
> > > 
> > > Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
> > > ---
> > > diff --git a/drivers/video/console/.gitignore b/drivers/video/console/.gitignore
> > > new file mode 100644
> > > index 0000000..ad0ad9b
> > > --- /dev/null
> > > +++ b/drivers/video/console/.gitignore
> > > @@ -0,0 +1,2 @@
> > > +# Generated conmakehash files
> > > +drivers/video/console/promcon_tbl.c
> > 
> > Did you test this?
> > I recall you should specify filenames relative to the
> > path of .gitignore.
> 
> According to the manpage both should work.
> 
> But I'd personally prefer it without a path since that's more robust in 
> case of directory moves.
I tested it here and it only worked for me without the path.

Florian - please drop the path and resend.

Thanks,
	Sam

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

* Re: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
  2008-07-30 15:59     ` Sam Ravnborg
@ 2008-07-30 21:30       ` Florian Fainelli
  2008-07-30 23:50         ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Florian Fainelli @ 2008-07-30 21:30 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: Adrian Bunk, David S. Miller, sparclinux, LKML

Hello Sam,

Le Wednesday 30 July 2008 17:59:55 Sam Ravnborg, vous avez écrit :
> I tested it here and it only worked for me without the path.
>
> Florian - please drop the path and resend.

Patch below, thanks.
--
From: Florian Fainelli <florian.fainelli@telecomint.eu>
Subject: [PATCH -next V3] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file

Add drivers/video/console/promcon_tbl.c to the list of ignored files.
This file is generated by conmakehash against drivers/video/console/prom.uni.

Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
---
diff --git a/drivers/video/console/.gitignore b/drivers/video/console/.gitignore
new file mode 100644
index 0000000..0c258b4
--- /dev/null
+++ b/drivers/video/console/.gitignore
@@ -0,0 +1,2 @@
+# conmakehash generated file
+promcon_tbl.c

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

* Re: [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file
  2008-07-30 21:30       ` Florian Fainelli
@ 2008-07-30 23:50         ` David Miller
  0 siblings, 0 replies; 7+ messages in thread
From: David Miller @ 2008-07-30 23:50 UTC (permalink / raw)
  To: florian.fainelli; +Cc: sam, bunk, sparclinux, linux-kernel

From: Florian Fainelli <florian.fainelli@telecomint.eu>
Date: Wed, 30 Jul 2008 23:30:58 +0200

> Le Wednesday 30 July 2008 17:59:55 Sam Ravnborg, vous avez écrit :
> > I tested it here and it only worked for me without the path.
> >
> > Florian - please drop the path and resend.
> 
> Patch below, thanks.

Applied, thank Florian.

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

end of thread, other threads:[~2008-07-30 23:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-30  9:56 [PATCH -next V2] Ignore drivers/video/console/promcon_tbl.c conmakehash generated file Florian Fainelli
2008-07-30 11:26 ` Sam Ravnborg
2008-07-30 11:29   ` Florian Fainelli
2008-07-30 15:41   ` Adrian Bunk
2008-07-30 15:59     ` Sam Ravnborg
2008-07-30 21:30       ` Florian Fainelli
2008-07-30 23:50         ` David Miller

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

all inboxes | Powered by JetHome®