* [PATCH] .gitignore update for x86 arch
@ 2007-10-16 7:22 Denis V. Lunev
2007-10-17 19:21 ` Sam Ravnborg
0 siblings, 1 reply; 3+ messages in thread
From: Denis V. Lunev @ 2007-10-16 7:22 UTC (permalink / raw)
To: akpm; +Cc: den, linux-kernel
This patch:
- makes .gitignore files visible to git
- makes arch/x86/kernel/vsyscall_32.lds and arch/i386/boot invisible
Signed-off-by: Denis V. Lunev <den@openvz.org>
diff --git a/.gitignore b/.gitignore
index 27c3e83..22fb8fa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,6 +26,7 @@ vmlinux*
!vmlinux.lds.S
System.map
Module.symvers
+!.gitignore
#
# Generated include files
diff --git a/arch/i386/.gitignore b/arch/i386/.gitignore
new file mode 100644
index 0000000..36ef4c3
--- /dev/null
+++ b/arch/i386/.gitignore
@@ -0,0 +1 @@
+boot
diff --git a/arch/x86/kernel/.gitignore b/arch/x86/kernel/.gitignore
index 40836ad..4ea38a3 100644
--- a/arch/x86/kernel/.gitignore
+++ b/arch/x86/kernel/.gitignore
@@ -1 +1,2 @@
vsyscall.lds
+vsyscall_32.lds
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] .gitignore update for x86 arch
2007-10-16 7:22 [PATCH] .gitignore update for x86 arch Denis V. Lunev
@ 2007-10-17 19:21 ` Sam Ravnborg
2007-10-17 19:25 ` Thomas Gleixner
0 siblings, 1 reply; 3+ messages in thread
From: Sam Ravnborg @ 2007-10-17 19:21 UTC (permalink / raw)
To: Denis V. Lunev, Thomas Gleixner; +Cc: akpm, linux-kernel
Hi Thomas.
Another one I expect you to take in your x86 tree - OK?
Sam
On Tue, Oct 16, 2007 at 11:22:21AM +0400, Denis V. Lunev wrote:
> This patch:
> - makes .gitignore files visible to git
> - makes arch/x86/kernel/vsyscall_32.lds and arch/i386/boot invisible
>
> Signed-off-by: Denis V. Lunev <den@openvz.org>
>
> diff --git a/.gitignore b/.gitignore
> index 27c3e83..22fb8fa 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -26,6 +26,7 @@ vmlinux*
> !vmlinux.lds.S
> System.map
> Module.symvers
> +!.gitignore
>
> #
> # Generated include files
> diff --git a/arch/i386/.gitignore b/arch/i386/.gitignore
> new file mode 100644
> index 0000000..36ef4c3
> --- /dev/null
> +++ b/arch/i386/.gitignore
> @@ -0,0 +1 @@
> +boot
> diff --git a/arch/x86/kernel/.gitignore b/arch/x86/kernel/.gitignore
> index 40836ad..4ea38a3 100644
> --- a/arch/x86/kernel/.gitignore
> +++ b/arch/x86/kernel/.gitignore
> @@ -1 +1,2 @@
> vsyscall.lds
> +vsyscall_32.lds
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] .gitignore update for x86 arch
2007-10-17 19:21 ` Sam Ravnborg
@ 2007-10-17 19:25 ` Thomas Gleixner
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2007-10-17 19:25 UTC (permalink / raw)
To: Sam Ravnborg; +Cc: Denis V. Lunev, akpm, linux-kernel
On Wed, 17 Oct 2007, Sam Ravnborg wrote:
> Hi Thomas.
>
> Another one I expect you to take in your x86 tree - OK?
Thanks, applied
tglx
> Sam
>
> On Tue, Oct 16, 2007 at 11:22:21AM +0400, Denis V. Lunev wrote:
> > This patch:
> > - makes .gitignore files visible to git
> > - makes arch/x86/kernel/vsyscall_32.lds and arch/i386/boot invisible
> >
> > Signed-off-by: Denis V. Lunev <den@openvz.org>
> >
> > diff --git a/.gitignore b/.gitignore
> > index 27c3e83..22fb8fa 100644
> > --- a/.gitignore
> > +++ b/.gitignore
> > @@ -26,6 +26,7 @@ vmlinux*
> > !vmlinux.lds.S
> > System.map
> > Module.symvers
> > +!.gitignore
> >
> > #
> > # Generated include files
> > diff --git a/arch/i386/.gitignore b/arch/i386/.gitignore
> > new file mode 100644
> > index 0000000..36ef4c3
> > --- /dev/null
> > +++ b/arch/i386/.gitignore
> > @@ -0,0 +1 @@
> > +boot
> > diff --git a/arch/x86/kernel/.gitignore b/arch/x86/kernel/.gitignore
> > index 40836ad..4ea38a3 100644
> > --- a/arch/x86/kernel/.gitignore
> > +++ b/arch/x86/kernel/.gitignore
> > @@ -1 +1,2 @@
> > vsyscall.lds
> > +vsyscall_32.lds
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-10-17 19:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-16 7:22 [PATCH] .gitignore update for x86 arch Denis V. Lunev
2007-10-17 19:21 ` Sam Ravnborg
2007-10-17 19:25 ` Thomas Gleixner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox