All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nds32: add vmlinux.lds and vdso.so to .gitignore
@ 2019-04-03  8:35 Masahiro Yamada
  2019-04-18  9:37 ` Masahiro Yamada
  0 siblings, 1 reply; 3+ messages in thread
From: Masahiro Yamada @ 2019-04-03  8:35 UTC (permalink / raw)
  To: Greentime Hu, Vincent Chen
  Cc: Masahiro Yamada, linux-kernel, Richard Weinberger, Ingo Molnar

These are build artifacts, which should be ignored by git.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/nds32/kernel/.gitignore      | 1 +
 arch/nds32/kernel/vdso/.gitignore | 1 +
 2 files changed, 2 insertions(+)
 create mode 100644 arch/nds32/kernel/.gitignore
 create mode 100644 arch/nds32/kernel/vdso/.gitignore

diff --git a/arch/nds32/kernel/.gitignore b/arch/nds32/kernel/.gitignore
new file mode 100644
index 0000000..c5f676c
--- /dev/null
+++ b/arch/nds32/kernel/.gitignore
@@ -0,0 +1 @@
+vmlinux.lds
diff --git a/arch/nds32/kernel/vdso/.gitignore b/arch/nds32/kernel/vdso/.gitignore
new file mode 100644
index 0000000..f8b69d8
--- /dev/null
+++ b/arch/nds32/kernel/vdso/.gitignore
@@ -0,0 +1 @@
+vdso.lds
-- 
2.7.4


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

* Re: [PATCH] nds32: add vmlinux.lds and vdso.so to .gitignore
  2019-04-03  8:35 [PATCH] nds32: add vmlinux.lds and vdso.so to .gitignore Masahiro Yamada
@ 2019-04-18  9:37 ` Masahiro Yamada
  2019-04-24  7:03   ` Greentime Hu
  0 siblings, 1 reply; 3+ messages in thread
From: Masahiro Yamada @ 2019-04-18  9:37 UTC (permalink / raw)
  To: Greentime Hu, Vincent Chen
  Cc: Linux Kernel Mailing List, Richard Weinberger, Ingo Molnar

Hi Greentime,

On Wed, Apr 3, 2019 at 5:39 PM Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:
>
> These are build artifacts, which should be ignored by git.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---

Ping ?

>
>  arch/nds32/kernel/.gitignore      | 1 +
>  arch/nds32/kernel/vdso/.gitignore | 1 +
>  2 files changed, 2 insertions(+)
>  create mode 100644 arch/nds32/kernel/.gitignore
>  create mode 100644 arch/nds32/kernel/vdso/.gitignore
>
> diff --git a/arch/nds32/kernel/.gitignore b/arch/nds32/kernel/.gitignore
> new file mode 100644
> index 0000000..c5f676c
> --- /dev/null
> +++ b/arch/nds32/kernel/.gitignore
> @@ -0,0 +1 @@
> +vmlinux.lds
> diff --git a/arch/nds32/kernel/vdso/.gitignore b/arch/nds32/kernel/vdso/.gitignore
> new file mode 100644
> index 0000000..f8b69d8
> --- /dev/null
> +++ b/arch/nds32/kernel/vdso/.gitignore
> @@ -0,0 +1 @@
> +vdso.lds
> --
> 2.7.4
>


-- 
Best Regards
Masahiro Yamada

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

* Re: [PATCH] nds32: add vmlinux.lds and vdso.so to .gitignore
  2019-04-18  9:37 ` Masahiro Yamada
@ 2019-04-24  7:03   ` Greentime Hu
  0 siblings, 0 replies; 3+ messages in thread
From: Greentime Hu @ 2019-04-24  7:03 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Vincent Chen, Linux Kernel Mailing List, Richard Weinberger, Ingo Molnar

Masahiro Yamada <yamada.masahiro@socionext.com> 於 2019年4月18日 週四 下午5:38寫道:
>
> Hi Greentime,
>
> On Wed, Apr 3, 2019 at 5:39 PM Masahiro Yamada
> <yamada.masahiro@socionext.com> wrote:
> >
> > These are build artifacts, which should be ignored by git.
> >
> > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> > ---
>
> Ping ?
>
> >
> >  arch/nds32/kernel/.gitignore      | 1 +
> >  arch/nds32/kernel/vdso/.gitignore | 1 +
> >  2 files changed, 2 insertions(+)
> >  create mode 100644 arch/nds32/kernel/.gitignore
> >  create mode 100644 arch/nds32/kernel/vdso/.gitignore
> >
> > diff --git a/arch/nds32/kernel/.gitignore b/arch/nds32/kernel/.gitignore
> > new file mode 100644
> > index 0000000..c5f676c
> > --- /dev/null
> > +++ b/arch/nds32/kernel/.gitignore
> > @@ -0,0 +1 @@
> > +vmlinux.lds
> > diff --git a/arch/nds32/kernel/vdso/.gitignore b/arch/nds32/kernel/vdso/.gitignore
> > new file mode 100644
> > index 0000000..f8b69d8
> > --- /dev/null
> > +++ b/arch/nds32/kernel/vdso/.gitignore
> > @@ -0,0 +1 @@
> > +vdso.lds

Hi Yamada,

Thank you.
Acked-by: Greentime Hu <greentime@andestech.com>

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

end of thread, other threads:[~2019-04-24  7:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-03  8:35 [PATCH] nds32: add vmlinux.lds and vdso.so to .gitignore Masahiro Yamada
2019-04-18  9:37 ` Masahiro Yamada
2019-04-24  7:03   ` Greentime Hu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.