All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: tools: Ignore relocation tool
@ 2016-05-11 19:16 Florian Fainelli
  2016-05-12  1:32   ` Maciej W. Rozycki
  2016-05-13 10:03   ` Matt Redfearn
  0 siblings, 2 replies; 10+ messages in thread
From: Florian Fainelli @ 2016-05-11 19:16 UTC (permalink / raw)
  To: linux-mips; +Cc: ralf, matt.redfearn, Florian Fainelli

Add a .gitignore ignoring arch/mips/boot/tools/relocs.

Fixes: 5f552da15721 ("MIPS: tools: Add relocs tool")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 arch/mips/boot/tools/.gitignore | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 arch/mips/boot/tools/.gitignore

diff --git a/arch/mips/boot/tools/.gitignore b/arch/mips/boot/tools/.gitignore
new file mode 100644
index 000000000000..be0ed065249b
--- /dev/null
+++ b/arch/mips/boot/tools/.gitignore
@@ -0,0 +1 @@
+relocs
-- 
2.7.4

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

* Re: [PATCH] MIPS: tools: Ignore relocation tool
@ 2016-05-12  1:32   ` Maciej W. Rozycki
  0 siblings, 0 replies; 10+ messages in thread
From: Maciej W. Rozycki @ 2016-05-12  1:32 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: linux-mips, Ralf Baechle, matt.redfearn

On Wed, 11 May 2016, Florian Fainelli wrote:

> Add a .gitignore ignoring arch/mips/boot/tools/relocs.

 It's also left behind after `make distclean' so looks like it's missing a 
clean-up rule or one hasn't been properly wired.

  Maciej

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

* Re: [PATCH] MIPS: tools: Ignore relocation tool
@ 2016-05-12  1:32   ` Maciej W. Rozycki
  0 siblings, 0 replies; 10+ messages in thread
From: Maciej W. Rozycki @ 2016-05-12  1:32 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: linux-mips, Ralf Baechle, matt.redfearn

On Wed, 11 May 2016, Florian Fainelli wrote:

> Add a .gitignore ignoring arch/mips/boot/tools/relocs.

 It's also left behind after `make distclean' so looks like it's missing a 
clean-up rule or one hasn't been properly wired.

  Maciej

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

* Re: [PATCH] MIPS: tools: Ignore relocation tool
  2016-05-12  1:32   ` Maciej W. Rozycki
  (?)
@ 2016-05-12  4:47   ` Florian Fainelli
  2016-05-12  7:21     ` Ralf Baechle
  -1 siblings, 1 reply; 10+ messages in thread
From: Florian Fainelli @ 2016-05-12  4:47 UTC (permalink / raw)
  To: Maciej W. Rozycki; +Cc: linux-mips, Ralf Baechle, matt.redfearn

Le 11/05/2016 18:32, Maciej W. Rozycki a écrit :
> On Wed, 11 May 2016, Florian Fainelli wrote:
> 
>> Add a .gitignore ignoring arch/mips/boot/tools/relocs.
> 
>  It's also left behind after `make distclean' so looks like it's missing a 
> clean-up rule or one hasn't been properly wired.

Whoops did not notice that, I will send a follow-up patch for that too,
thanks!
-- 
Florian

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

* Re: [PATCH] MIPS: tools: Ignore relocation tool
  2016-05-12  4:47   ` Florian Fainelli
@ 2016-05-12  7:21     ` Ralf Baechle
  2016-05-13  0:01       ` [PATCH] MIPS: Descend into arch/mips/boot/tools while cleaning Florian Fainelli
  0 siblings, 1 reply; 10+ messages in thread
From: Ralf Baechle @ 2016-05-12  7:21 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: Maciej W. Rozycki, linux-mips, matt.redfearn

On Wed, May 11, 2016 at 09:47:23PM -0700, Florian Fainelli wrote:

> Le 11/05/2016 18:32, Maciej W. Rozycki a écrit :
> > On Wed, 11 May 2016, Florian Fainelli wrote:
> > 
> >> Add a .gitignore ignoring arch/mips/boot/tools/relocs.
> > 
> >  It's also left behind after `make distclean' so looks like it's missing a 
> > clean-up rule or one hasn't been properly wired.
> 
> Whoops did not notice that, I will send a follow-up patch for that too,
> thanks!

Somehow that also popped up on my radar only a day or two ago.  It seems
the tools/ directory isn't wired up like other dirs and thus make clean
etc. never get executed on it.

  Ralf

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

* [PATCH] MIPS: Descend into arch/mips/boot/tools while cleaning
  2016-05-12  7:21     ` Ralf Baechle
@ 2016-05-13  0:01       ` Florian Fainelli
  2016-05-13 10:03           ` Matt Redfearn
  0 siblings, 1 reply; 10+ messages in thread
From: Florian Fainelli @ 2016-05-13  0:01 UTC (permalink / raw)
  To: linux-mips; +Cc: ralf, macro, matt.redfearn, Florian Fainelli

arch/mips/boot/tools/relocs was not being cleaned since we did not wire
this directory into the archclean target, fix that.

Fixes: 5f552da15721 ("MIPS: tools: Add relocs tool")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 arch/mips/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index 8388ef6a0044..c0b002a09bef 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -404,6 +404,7 @@ endif
 archclean:
 	$(Q)$(MAKE) $(clean)=arch/mips/boot
 	$(Q)$(MAKE) $(clean)=arch/mips/boot/compressed
+	$(Q)$(MAKE) $(clean)=arch/mips/boot/tools
 	$(Q)$(MAKE) $(clean)=arch/mips/lasat
 
 define archhelp
-- 
2.7.4

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

* Re: [PATCH] MIPS: tools: Ignore relocation tool
@ 2016-05-13 10:03   ` Matt Redfearn
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Redfearn @ 2016-05-13 10:03 UTC (permalink / raw)
  To: Florian Fainelli, linux-mips; +Cc: ralf

Good spot Florian.

Acked-by: Matt Redfearn <matt.redfearn@imgtec.com>

On 11/05/16 20:16, Florian Fainelli wrote:
> Add a .gitignore ignoring arch/mips/boot/tools/relocs.
>
> Fixes: 5f552da15721 ("MIPS: tools: Add relocs tool")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
>   arch/mips/boot/tools/.gitignore | 1 +
>   1 file changed, 1 insertion(+)
>   create mode 100644 arch/mips/boot/tools/.gitignore
>
> diff --git a/arch/mips/boot/tools/.gitignore b/arch/mips/boot/tools/.gitignore
> new file mode 100644
> index 000000000000..be0ed065249b
> --- /dev/null
> +++ b/arch/mips/boot/tools/.gitignore
> @@ -0,0 +1 @@
> +relocs

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

* Re: [PATCH] MIPS: tools: Ignore relocation tool
@ 2016-05-13 10:03   ` Matt Redfearn
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Redfearn @ 2016-05-13 10:03 UTC (permalink / raw)
  To: Florian Fainelli, linux-mips; +Cc: ralf

Good spot Florian.

Acked-by: Matt Redfearn <matt.redfearn@imgtec.com>

On 11/05/16 20:16, Florian Fainelli wrote:
> Add a .gitignore ignoring arch/mips/boot/tools/relocs.
>
> Fixes: 5f552da15721 ("MIPS: tools: Add relocs tool")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
>   arch/mips/boot/tools/.gitignore | 1 +
>   1 file changed, 1 insertion(+)
>   create mode 100644 arch/mips/boot/tools/.gitignore
>
> diff --git a/arch/mips/boot/tools/.gitignore b/arch/mips/boot/tools/.gitignore
> new file mode 100644
> index 000000000000..be0ed065249b
> --- /dev/null
> +++ b/arch/mips/boot/tools/.gitignore
> @@ -0,0 +1 @@
> +relocs

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

* Re: [PATCH] MIPS: Descend into arch/mips/boot/tools while cleaning
@ 2016-05-13 10:03           ` Matt Redfearn
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Redfearn @ 2016-05-13 10:03 UTC (permalink / raw)
  To: Florian Fainelli, linux-mips; +Cc: ralf, macro

And this one.

Acked-by: Matt Redfearn <matt.redfearn@imgtec.com>

On 13/05/16 01:01, Florian Fainelli wrote:
> arch/mips/boot/tools/relocs was not being cleaned since we did not wire
> this directory into the archclean target, fix that.
>
> Fixes: 5f552da15721 ("MIPS: tools: Add relocs tool")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
>   arch/mips/Makefile | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/arch/mips/Makefile b/arch/mips/Makefile
> index 8388ef6a0044..c0b002a09bef 100644
> --- a/arch/mips/Makefile
> +++ b/arch/mips/Makefile
> @@ -404,6 +404,7 @@ endif
>   archclean:
>   	$(Q)$(MAKE) $(clean)=arch/mips/boot
>   	$(Q)$(MAKE) $(clean)=arch/mips/boot/compressed
> +	$(Q)$(MAKE) $(clean)=arch/mips/boot/tools
>   	$(Q)$(MAKE) $(clean)=arch/mips/lasat
>   
>   define archhelp

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

* Re: [PATCH] MIPS: Descend into arch/mips/boot/tools while cleaning
@ 2016-05-13 10:03           ` Matt Redfearn
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Redfearn @ 2016-05-13 10:03 UTC (permalink / raw)
  To: Florian Fainelli, linux-mips; +Cc: ralf, macro

And this one.

Acked-by: Matt Redfearn <matt.redfearn@imgtec.com>

On 13/05/16 01:01, Florian Fainelli wrote:
> arch/mips/boot/tools/relocs was not being cleaned since we did not wire
> this directory into the archclean target, fix that.
>
> Fixes: 5f552da15721 ("MIPS: tools: Add relocs tool")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
>   arch/mips/Makefile | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/arch/mips/Makefile b/arch/mips/Makefile
> index 8388ef6a0044..c0b002a09bef 100644
> --- a/arch/mips/Makefile
> +++ b/arch/mips/Makefile
> @@ -404,6 +404,7 @@ endif
>   archclean:
>   	$(Q)$(MAKE) $(clean)=arch/mips/boot
>   	$(Q)$(MAKE) $(clean)=arch/mips/boot/compressed
> +	$(Q)$(MAKE) $(clean)=arch/mips/boot/tools
>   	$(Q)$(MAKE) $(clean)=arch/mips/lasat
>   
>   define archhelp

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

end of thread, other threads:[~2016-05-13 10:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-11 19:16 [PATCH] MIPS: tools: Ignore relocation tool Florian Fainelli
2016-05-12  1:32 ` Maciej W. Rozycki
2016-05-12  1:32   ` Maciej W. Rozycki
2016-05-12  4:47   ` Florian Fainelli
2016-05-12  7:21     ` Ralf Baechle
2016-05-13  0:01       ` [PATCH] MIPS: Descend into arch/mips/boot/tools while cleaning Florian Fainelli
2016-05-13 10:03         ` Matt Redfearn
2016-05-13 10:03           ` Matt Redfearn
2016-05-13 10:03 ` [PATCH] MIPS: tools: Ignore relocation tool Matt Redfearn
2016-05-13 10:03   ` Matt Redfearn

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.