linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean
@ 2013-06-10  6:03 Magnus Damm
  2013-06-10 11:26 ` Dave Martin
  2013-06-11  7:48 ` Simon Horman
  0 siblings, 2 replies; 6+ messages in thread
From: Magnus Damm @ 2013-06-10  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Magnus Damm <damm@opensource.se>

Make sure hyp-stub.S gets removed during make distclean,
this left over file was introduced in commit:

424e599 ARM: zImage/virt: hyp mode entry support for the zImage loader

Signed-off-by: Magnus Damm <damm@opensource.se>
---

 arch/arm/boot/compressed/Makefile |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- 0001/arch/arm/boot/compressed/Makefile
+++ work/arch/arm/boot/compressed/Makefile	2013-06-05 17:21:20.000000000 +0900
@@ -116,7 +116,8 @@ targets       := vmlinux vmlinux.lds \
 
 # Make sure files are removed during clean
 extra-y       += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern \
-		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs)
+		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs) \
+		 hyp-stub.S
 
 ifeq ($(CONFIG_FUNCTION_TRACER),y)
 ORIG_CFLAGS := $(KBUILD_CFLAGS)

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

* [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean
  2013-06-10  6:03 [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean Magnus Damm
@ 2013-06-10 11:26 ` Dave Martin
  2013-06-11  7:48 ` Simon Horman
  1 sibling, 0 replies; 6+ messages in thread
From: Dave Martin @ 2013-06-10 11:26 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 10, 2013 at 03:03:25PM +0900, Magnus Damm wrote:
> From: Magnus Damm <damm@opensource.se>
> 
> Make sure hyp-stub.S gets removed during make distclean,
> this left over file was introduced in commit:
> 
> 424e599 ARM: zImage/virt: hyp mode entry support for the zImage loader
> 
> Signed-off-by: Magnus Damm <damm@opensource.se>

Thanks for spotting this.  Your fix looks sensible to me.

Acked-by: Dave Martin <dave.martin@linaro.org>

> ---
> 
>  arch/arm/boot/compressed/Makefile |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> --- 0001/arch/arm/boot/compressed/Makefile
> +++ work/arch/arm/boot/compressed/Makefile	2013-06-05 17:21:20.000000000 +0900
> @@ -116,7 +116,8 @@ targets       := vmlinux vmlinux.lds \
>  
>  # Make sure files are removed during clean
>  extra-y       += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern \
> -		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs)
> +		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs) \
> +		 hyp-stub.S
>  
>  ifeq ($(CONFIG_FUNCTION_TRACER),y)
>  ORIG_CFLAGS := $(KBUILD_CFLAGS)

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

* [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean
  2013-06-10  6:03 [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean Magnus Damm
  2013-06-10 11:26 ` Dave Martin
@ 2013-06-11  7:48 ` Simon Horman
  2013-06-11  9:31   ` Magnus Damm
  1 sibling, 1 reply; 6+ messages in thread
From: Simon Horman @ 2013-06-11  7:48 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 10, 2013 at 03:03:25PM +0900, Magnus Damm wrote:
> From: Magnus Damm <damm@opensource.se>
> 
> Make sure hyp-stub.S gets removed during make distclean,
> this left over file was introduced in commit:
> 
> 424e599 ARM: zImage/virt: hyp mode entry support for the zImage loader
> 
> Signed-off-by: Magnus Damm <damm@opensource.se>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

> ---
> 
>  arch/arm/boot/compressed/Makefile |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> --- 0001/arch/arm/boot/compressed/Makefile
> +++ work/arch/arm/boot/compressed/Makefile	2013-06-05 17:21:20.000000000 +0900
> @@ -116,7 +116,8 @@ targets       := vmlinux vmlinux.lds \
>  
>  # Make sure files are removed during clean
>  extra-y       += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern \
> -		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs)
> +		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs) \
> +		 hyp-stub.S
>  
>  ifeq ($(CONFIG_FUNCTION_TRACER),y)
>  ORIG_CFLAGS := $(KBUILD_CFLAGS)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean
  2013-06-11  7:48 ` Simon Horman
@ 2013-06-11  9:31   ` Magnus Damm
  2013-06-11 10:06     ` Dave Martin
  0 siblings, 1 reply; 6+ messages in thread
From: Magnus Damm @ 2013-06-11  9:31 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Simon, Dave, everyone,

On Tue, Jun 11, 2013 at 4:48 PM, Simon Horman <horms@verge.net.au> wrote:
> On Mon, Jun 10, 2013 at 03:03:25PM +0900, Magnus Damm wrote:
>> From: Magnus Damm <damm@opensource.se>
>>
>> Make sure hyp-stub.S gets removed during make distclean,
>> this left over file was introduced in commit:
>>
>> 424e599 ARM: zImage/virt: hyp mode entry support for the zImage loader
>>
>> Signed-off-by: Magnus Damm <damm@opensource.se>

Acked-by: Dave Martin <dave.martin@linaro.org>

> Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

Thanks guys, who can pick this up?

Cheers,

/ magnus

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

* [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean
  2013-06-11  9:31   ` Magnus Damm
@ 2013-06-11 10:06     ` Dave Martin
  2013-06-12  9:52       ` Magnus Damm
  0 siblings, 1 reply; 6+ messages in thread
From: Dave Martin @ 2013-06-11 10:06 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jun 11, 2013 at 06:31:37PM +0900, Magnus Damm wrote:
> Hi Simon, Dave, everyone,
> 
> On Tue, Jun 11, 2013 at 4:48 PM, Simon Horman <horms@verge.net.au> wrote:
> > On Mon, Jun 10, 2013 at 03:03:25PM +0900, Magnus Damm wrote:
> >> From: Magnus Damm <damm@opensource.se>
> >>
> >> Make sure hyp-stub.S gets removed during make distclean,
> >> this left over file was introduced in commit:
> >>
> >> 424e599 ARM: zImage/virt: hyp mode entry support for the zImage loader
> >>
> >> Signed-off-by: Magnus Damm <damm@opensource.se>
> 
> Acked-by: Dave Martin <dave.martin@linaro.org>
> 
> > Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
> 
> Thanks guys, who can pick this up?

I suggest you send this to Russell's patch system.

Cheers
---Dave

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

* [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean
  2013-06-11 10:06     ` Dave Martin
@ 2013-06-12  9:52       ` Magnus Damm
  0 siblings, 0 replies; 6+ messages in thread
From: Magnus Damm @ 2013-06-12  9:52 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jun 11, 2013 at 7:06 PM, Dave Martin <dave.martin@linaro.org> wrote:
> On Tue, Jun 11, 2013 at 06:31:37PM +0900, Magnus Damm wrote:
>> Hi Simon, Dave, everyone,
>>
>> On Tue, Jun 11, 2013 at 4:48 PM, Simon Horman <horms@verge.net.au> wrote:
>> > On Mon, Jun 10, 2013 at 03:03:25PM +0900, Magnus Damm wrote:
>> >> From: Magnus Damm <damm@opensource.se>
>> >>
>> >> Make sure hyp-stub.S gets removed during make distclean,
>> >> this left over file was introduced in commit:
>> >>
>> >> 424e599 ARM: zImage/virt: hyp mode entry support for the zImage loader
>> >>
>> >> Signed-off-by: Magnus Damm <damm@opensource.se>
>>
>> Acked-by: Dave Martin <dave.martin@linaro.org>
>>
>> > Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
>>
>> Thanks guys, who can pick this up?
>
> I suggest you send this to Russell's patch system.

Done!

http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7756/1

Thanks for your help!

/ magnus

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

end of thread, other threads:[~2013-06-12  9:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-10  6:03 [PATCH] ARM: zImage/virt: remove hyp-stub.S during distclean Magnus Damm
2013-06-10 11:26 ` Dave Martin
2013-06-11  7:48 ` Simon Horman
2013-06-11  9:31   ` Magnus Damm
2013-06-11 10:06     ` Dave Martin
2013-06-12  9:52       ` Magnus Damm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).