public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] perf tools: Ignore .config-detected in .gitignore
@ 2015-06-17 11:59 Wang Nan
  2015-06-17 12:41 ` Wangnan (F)
  2015-06-18  8:15 ` [tip:perf/core] " tip-bot for Wang Nan
  0 siblings, 2 replies; 4+ messages in thread
From: Wang Nan @ 2015-06-17 11:59 UTC (permalink / raw)
  To: acme, jolsa; +Cc: lizefan, linux-kernel

Commit fcfd6611fbccdbf2593bd949097a5c0e45cd96da ("tools build: Add
detected config support") dynamically creates .config-detected. Add it
to .gitignore.

Signed-off-by: Wang Nan <wangnan0@huawei.com>
---
 tools/perf/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index 812f904..09db62b 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -28,3 +28,4 @@ config.mak.autogen
 *-flex.*
 *.pyc
 *.pyo
+.config-detected
-- 
1.8.3.4


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

* Re: [PATCH RESEND] perf tools: Ignore .config-detected in .gitignore
  2015-06-17 11:59 [PATCH RESEND] perf tools: Ignore .config-detected in .gitignore Wang Nan
@ 2015-06-17 12:41 ` Wangnan (F)
  2015-06-17 15:58   ` Arnaldo Carvalho de Melo
  2015-06-18  8:15 ` [tip:perf/core] " tip-bot for Wang Nan
  1 sibling, 1 reply; 4+ messages in thread
From: Wangnan (F) @ 2015-06-17 12:41 UTC (permalink / raw)
  To: acme, jolsa; +Cc: lizefan, linux-kernel

This patch has already acked-by Jiri Olsa on March, but I lost the original
email on my local mailbox, so send it again.

Thank you.

On 2015/6/17 19:59, Wang Nan wrote:
> Commit fcfd6611fbccdbf2593bd949097a5c0e45cd96da ("tools build: Add
> detected config support") dynamically creates .config-detected. Add it
> to .gitignore.
>
> Signed-off-by: Wang Nan <wangnan0@huawei.com>
> ---
>   tools/perf/.gitignore | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
> index 812f904..09db62b 100644
> --- a/tools/perf/.gitignore
> +++ b/tools/perf/.gitignore
> @@ -28,3 +28,4 @@ config.mak.autogen
>   *-flex.*
>   *.pyc
>   *.pyo
> +.config-detected



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

* Re: [PATCH RESEND] perf tools: Ignore .config-detected in .gitignore
  2015-06-17 12:41 ` Wangnan (F)
@ 2015-06-17 15:58   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-06-17 15:58 UTC (permalink / raw)
  To: Wangnan (F); +Cc: jolsa, lizefan, linux-kernel

Em Wed, Jun 17, 2015 at 08:41:52PM +0800, Wangnan (F) escreveu:
> This patch has already acked-by Jiri Olsa on March, but I lost the original
> email on my local mailbox, so send it again.

Couldn't find the Ack, or the first submission, anyway, applying it now,

Thanks,

- Arnaldo
 
> Thank you.
> 
> On 2015/6/17 19:59, Wang Nan wrote:
> >Commit fcfd6611fbccdbf2593bd949097a5c0e45cd96da ("tools build: Add
> >detected config support") dynamically creates .config-detected. Add it
> >to .gitignore.
> >
> >Signed-off-by: Wang Nan <wangnan0@huawei.com>
> >---
> >  tools/perf/.gitignore | 1 +
> >  1 file changed, 1 insertion(+)
> >
> >diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
> >index 812f904..09db62b 100644
> >--- a/tools/perf/.gitignore
> >+++ b/tools/perf/.gitignore
> >@@ -28,3 +28,4 @@ config.mak.autogen
> >  *-flex.*
> >  *.pyc
> >  *.pyo
> >+.config-detected
> 
> 
> --
> 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] 4+ messages in thread

* [tip:perf/core] perf tools: Ignore .config-detected in .gitignore
  2015-06-17 11:59 [PATCH RESEND] perf tools: Ignore .config-detected in .gitignore Wang Nan
  2015-06-17 12:41 ` Wangnan (F)
@ 2015-06-18  8:15 ` tip-bot for Wang Nan
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Wang Nan @ 2015-06-18  8:15 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, mingo, lizefan, hpa, tglx, jolsa, wangnan0, acme

Commit-ID:  386299735e7056455bcead28f6ffa4357116ce38
Gitweb:     http://git.kernel.org/tip/386299735e7056455bcead28f6ffa4357116ce38
Author:     Wang Nan <wangnan0@huawei.com>
AuthorDate: Wed, 17 Jun 2015 11:59:18 +0000
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Wed, 17 Jun 2015 12:44:55 -0300

perf tools: Ignore .config-detected in .gitignore

Commit fcfd6611fbccdbf2593bd949097a5c0e45cd96da ("tools build: Add
detected config support") dynamically creates .config-detected. Add it
to .gitignore.

Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Zefan Li <lizefan@huawei.com>
Link: http://lkml.kernel.org/r/1434542358-5430-1-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index 812f904..09db62b 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -28,3 +28,4 @@ config.mak.autogen
 *-flex.*
 *.pyc
 *.pyo
+.config-detected

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

end of thread, other threads:[~2015-06-18  8:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-17 11:59 [PATCH RESEND] perf tools: Ignore .config-detected in .gitignore Wang Nan
2015-06-17 12:41 ` Wangnan (F)
2015-06-17 15:58   ` Arnaldo Carvalho de Melo
2015-06-18  8:15 ` [tip:perf/core] " tip-bot for Wang Nan

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