public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86, kexec: Add .gitignore file
@ 2014-10-10 22:55 Prarit Bhargava
  2014-10-10 23:47 ` Shuah Khan
  2014-10-13 12:36 ` Vivek Goyal
  0 siblings, 2 replies; 6+ messages in thread
From: Prarit Bhargava @ 2014-10-10 22:55 UTC (permalink / raw)
  To: linux-kernel; +Cc: Prarit Bhargava, x86, Vivek Goyal

When doing git-status there are two untracked files:

\# Untracked files:
\#   (use "git add <file>..." to include in what will be committed)
\#
\#       arch/x86/purgatory/kexec-purgatory.c
\#       arch/x86/purgatory/purgatory.ro

Add a .gitignore to block these files.

Cc: x86@kernel.org
Cc: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
---
 arch/x86/purgatory/.gitignore |    2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 arch/x86/purgatory/.gitignore

diff --git a/arch/x86/purgatory/.gitignore b/arch/x86/purgatory/.gitignore
new file mode 100644
index 0000000..e9e66f1
--- /dev/null
+++ b/arch/x86/purgatory/.gitignore
@@ -0,0 +1,2 @@
+kexec-purgatory.c
+purgatory.ro
-- 
1.7.9.3


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

* Re: [PATCH] x86, kexec: Add .gitignore file
  2014-10-10 22:55 [PATCH] x86, kexec: Add .gitignore file Prarit Bhargava
@ 2014-10-10 23:47 ` Shuah Khan
  2014-10-11 18:50   ` Prarit Bhargava
  2014-10-22 12:15   ` Prarit Bhargava
  2014-10-13 12:36 ` Vivek Goyal
  1 sibling, 2 replies; 6+ messages in thread
From: Shuah Khan @ 2014-10-10 23:47 UTC (permalink / raw)
  To: Prarit Bhargava; +Cc: LKML, x86, Vivek Goyal

On Fri, Oct 10, 2014 at 4:55 PM, Prarit Bhargava <prarit@redhat.com> wrote:
> When doing git-status there are two untracked files:
>
> \# Untracked files:
> \#   (use "git add <file>..." to include in what will be committed)
> \#
> \#       arch/x86/purgatory/kexec-purgatory.c
> \#       arch/x86/purgatory/purgatory.ro
>
> Add a .gitignore to block these files.

I sent patch for this couple of weeks ago. It is pulled in looks like,
I got tipbot
for that patch.

http://marc.info/?l=linux-kernel&m=141201613309178

-- Shuah

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

* Re: [PATCH] x86, kexec: Add .gitignore file
  2014-10-10 23:47 ` Shuah Khan
@ 2014-10-11 18:50   ` Prarit Bhargava
  2014-10-22 12:15   ` Prarit Bhargava
  1 sibling, 0 replies; 6+ messages in thread
From: Prarit Bhargava @ 2014-10-11 18:50 UTC (permalink / raw)
  To: Shuah Khan; +Cc: LKML, x86, Vivek Goyal



On 10/10/2014 07:47 PM, Shuah Khan wrote:
> On Fri, Oct 10, 2014 at 4:55 PM, Prarit Bhargava <prarit@redhat.com> wrote:
>> When doing git-status there are two untracked files:
>>
>> \# Untracked files:
>> \#   (use "git add <file>..." to include in what will be committed)
>> \#
>> \#       arch/x86/purgatory/kexec-purgatory.c
>> \#       arch/x86/purgatory/purgatory.ro
>>
>> Add a .gitignore to block these files.
> 
> I sent patch for this couple of weeks ago. It is pulled in looks like,
> I got tipbot
> for that patch.
> 
> http://marc.info/?l=linux-kernel&m=141201613309178

Thanks Shuah.

P.

> 
> -- Shuah
> 

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

* Re: [PATCH] x86, kexec: Add .gitignore file
  2014-10-10 22:55 [PATCH] x86, kexec: Add .gitignore file Prarit Bhargava
  2014-10-10 23:47 ` Shuah Khan
@ 2014-10-13 12:36 ` Vivek Goyal
  1 sibling, 0 replies; 6+ messages in thread
From: Vivek Goyal @ 2014-10-13 12:36 UTC (permalink / raw)
  To: Prarit Bhargava; +Cc: linux-kernel, x86, Andrew Morton

On Fri, Oct 10, 2014 at 06:55:21PM -0400, Prarit Bhargava wrote:
> When doing git-status there are two untracked files:
> 
> \# Untracked files:
> \#   (use "git add <file>..." to include in what will be committed)
> \#
> \#       arch/x86/purgatory/kexec-purgatory.c
> \#       arch/x86/purgatory/purgatory.ro
> 
> Add a .gitignore to block these files.
> 
> Cc: x86@kernel.org
> Cc: Vivek Goyal <vgoyal@redhat.com>
> Signed-off-by: Prarit Bhargava <prarit@redhat.com>

[ CC akpm ]

Thanks Prarit.

Acked-by: Vivek Goyal <vgoyal@redhat.com>

Vivek

> ---
>  arch/x86/purgatory/.gitignore |    2 ++
>  1 file changed, 2 insertions(+)
>  create mode 100644 arch/x86/purgatory/.gitignore
> 
> diff --git a/arch/x86/purgatory/.gitignore b/arch/x86/purgatory/.gitignore
> new file mode 100644
> index 0000000..e9e66f1
> --- /dev/null
> +++ b/arch/x86/purgatory/.gitignore
> @@ -0,0 +1,2 @@
> +kexec-purgatory.c
> +purgatory.ro
> -- 
> 1.7.9.3

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

* Re: [PATCH] x86, kexec: Add .gitignore file
  2014-10-10 23:47 ` Shuah Khan
  2014-10-11 18:50   ` Prarit Bhargava
@ 2014-10-22 12:15   ` Prarit Bhargava
  2014-10-22 12:27     ` Prarit Bhargava
  1 sibling, 1 reply; 6+ messages in thread
From: Prarit Bhargava @ 2014-10-22 12:15 UTC (permalink / raw)
  To: Shuah Khan; +Cc: LKML, x86, Vivek Goyal



On 10/10/2014 07:47 PM, Shuah Khan wrote:
> On Fri, Oct 10, 2014 at 4:55 PM, Prarit Bhargava <prarit@redhat.com> wrote:
>> When doing git-status there are two untracked files:
>>
>> \# Untracked files:
>> \#   (use "git add <file>..." to include in what will be committed)
>> \#
>> \#       arch/x86/purgatory/kexec-purgatory.c
>> \#       arch/x86/purgatory/purgatory.ro
>>
>> Add a .gitignore to block these files.
> 
> I sent patch for this couple of weeks ago. It is pulled in looks like,
> I got tipbot
> for that patch.
> 
> http://marc.info/?l=linux-kernel&m=141201613309178

Shuah, I don't see it in tip or linux.

P.

> 
> -- Shuah
> 

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

* Re: [PATCH] x86, kexec: Add .gitignore file
  2014-10-22 12:15   ` Prarit Bhargava
@ 2014-10-22 12:27     ` Prarit Bhargava
  0 siblings, 0 replies; 6+ messages in thread
From: Prarit Bhargava @ 2014-10-22 12:27 UTC (permalink / raw)
  To: Shuah Khan; +Cc: LKML, x86, Vivek Goyal



On 10/22/2014 08:15 AM, Prarit Bhargava wrote:
> 
> 
> On 10/10/2014 07:47 PM, Shuah Khan wrote:
>> On Fri, Oct 10, 2014 at 4:55 PM, Prarit Bhargava <prarit@redhat.com> wrote:
>>> When doing git-status there are two untracked files:
>>>
>>> \# Untracked files:
>>> \#   (use "git add <file>..." to include in what will be committed)
>>> \#
>>> \#       arch/x86/purgatory/kexec-purgatory.c
>>> \#       arch/x86/purgatory/purgatory.ro
>>>
>>> Add a .gitignore to block these files.
>>
>> I sent patch for this couple of weeks ago. It is pulled in looks like,
>> I got tipbot
>> for that patch.
>>
>> http://marc.info/?l=linux-kernel&m=141201613309178
> 
> Shuah, I don't see it in tip or linux.

Never mind ... I really need to make sure I do a git pull ;)

4ea48a01bb1a99f4185b77cd90cf962730336cc4

Thanks again Shuah,

P.

> 
> P.
> 
>>
>> -- Shuah
>>

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

end of thread, other threads:[~2014-10-22 12:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-10 22:55 [PATCH] x86, kexec: Add .gitignore file Prarit Bhargava
2014-10-10 23:47 ` Shuah Khan
2014-10-11 18:50   ` Prarit Bhargava
2014-10-22 12:15   ` Prarit Bhargava
2014-10-22 12:27     ` Prarit Bhargava
2014-10-13 12:36 ` Vivek Goyal

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