linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: Cleanup kexec Makefile
  2016-10-10 21:22 [PATCH 0/2] arm64 kexec-tools fixups Geoff Levand
@ 2016-10-10 21:22 ` Geoff Levand
  2016-10-10 21:22 ` [PATCH 2/2] arm64: Add missing kexec dist files Geoff Levand
  2016-10-11 10:20 ` [PATCH 0/2] arm64 kexec-tools fixups Matthias Brugger
  2 siblings, 0 replies; 5+ messages in thread
From: Geoff Levand @ 2016-10-10 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

Put files in alphabetical order, reformat whitspace.

Signed-off-by: Geoff Levand <geoff@infradead.org>
---
 kexec/arch/arm64/Makefile | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/kexec/arch/arm64/Makefile b/kexec/arch/arm64/Makefile
index 37414dc..d729df8 100644
--- a/kexec/arch/arm64/Makefile
+++ b/kexec/arch/arm64/Makefile
@@ -1,17 +1,18 @@
 
 arm64_FS2DT += kexec/fs2dt.c
-arm64_FS2DT_INCLUDE += -include $(srcdir)/kexec/arch/arm64/kexec-arm64.h \
-	-include $(srcdir)/kexec/arch/arm64/crashdump-arm64.h
+arm64_FS2DT_INCLUDE += \
+	-include $(srcdir)/kexec/arch/arm64/crashdump-arm64.h \
+	-include $(srcdir)/kexec/arch/arm64/kexec-arm64.h
 
 arm64_DT_OPS += kexec/dt-ops.c
 
 arm64_CPPFLAGS += -I $(srcdir)/kexec/
 
 arm64_KEXEC_SRCS += \
+	kexec/arch/arm64/crashdump-arm64.c \
 	kexec/arch/arm64/kexec-arm64.c \
-	kexec/arch/arm64/kexec-image-arm64.c \
 	kexec/arch/arm64/kexec-elf-arm64.c \
-	kexec/arch/arm64/crashdump-arm64.c
+	kexec/arch/arm64/kexec-image-arm64.c
 
 arm64_ARCH_REUSE_INITRD =
 arm64_ADD_SEGMENT =
@@ -19,9 +20,9 @@ arm64_VIRT_TO_PHYS =
 arm64_PHYS_TO_VIRT =
 
 dist += $(arm64_KEXEC_SRCS) \
-	kexec/arch/arm64/Makefile \
+	kexec/arch/arm64/crashdump-arm64.h \
 	kexec/arch/arm64/kexec-arm64.h \
-	kexec/arch/arm64/crashdump-arm64.h
+	kexec/arch/arm64/Makefile
 
 ifdef HAVE_LIBFDT
 
-- 
2.7.4

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

* [PATCH 0/2] arm64 kexec-tools fixups
@ 2016-10-10 21:22 Geoff Levand
  2016-10-10 21:22 ` [PATCH 1/2] arm64: Cleanup kexec Makefile Geoff Levand
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Geoff Levand @ 2016-10-10 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Simon,

Fixes for 'make tarball'.  Please apply.

-Geoff

The following changes since commit 6e8804f9ca67bee65aedd5e1cdf504737ab5c7ed:

  multiboot: Use the "reserved" type for non-ram zones (2016-10-07 11:54:44 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geoff/kexec-tools.git for-merge-arm64-dist

for you to fetch changes up to 3552a3e85a910688d932535549b35354a54927ad:

  arm64: Add missing kexec dist files (2016-10-10 14:15:21 -0700)

----------------------------------------------------------------
Geoff Levand (2):
      arm64: Cleanup kexec Makefile
      arm64: Add missing kexec dist files

 kexec/arch/arm64/Makefile | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

-- 
2.7.4

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

* [PATCH 2/2] arm64: Add missing kexec dist files
  2016-10-10 21:22 [PATCH 0/2] arm64 kexec-tools fixups Geoff Levand
  2016-10-10 21:22 ` [PATCH 1/2] arm64: Cleanup kexec Makefile Geoff Levand
@ 2016-10-10 21:22 ` Geoff Levand
  2016-10-11 10:20 ` [PATCH 0/2] arm64 kexec-tools fixups Matthias Brugger
  2 siblings, 0 replies; 5+ messages in thread
From: Geoff Levand @ 2016-10-10 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Geoff Levand <geoff@infradead.org>
---
 kexec/arch/arm64/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kexec/arch/arm64/Makefile b/kexec/arch/arm64/Makefile
index d729df8..74b677f 100644
--- a/kexec/arch/arm64/Makefile
+++ b/kexec/arch/arm64/Makefile
@@ -20,7 +20,9 @@ arm64_VIRT_TO_PHYS =
 arm64_PHYS_TO_VIRT =
 
 dist += $(arm64_KEXEC_SRCS) \
+	kexec/arch/arm64/include/arch/options.h \
 	kexec/arch/arm64/crashdump-arm64.h \
+	kexec/arch/arm64/image-header.h \
 	kexec/arch/arm64/kexec-arm64.h \
 	kexec/arch/arm64/Makefile
 
-- 
2.7.4

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

* [PATCH 0/2] arm64 kexec-tools fixups
  2016-10-10 21:22 [PATCH 0/2] arm64 kexec-tools fixups Geoff Levand
  2016-10-10 21:22 ` [PATCH 1/2] arm64: Cleanup kexec Makefile Geoff Levand
  2016-10-10 21:22 ` [PATCH 2/2] arm64: Add missing kexec dist files Geoff Levand
@ 2016-10-11 10:20 ` Matthias Brugger
  2016-10-13  9:25   ` Simon Horman
  2 siblings, 1 reply; 5+ messages in thread
From: Matthias Brugger @ 2016-10-11 10:20 UTC (permalink / raw)
  To: linux-arm-kernel



On 10/10/2016 11:22 PM, Geoff Levand wrote:
> Hi Simon,
>
> Fixes for 'make tarball'.  Please apply.
>
> -Geoff
>
> The following changes since commit 6e8804f9ca67bee65aedd5e1cdf504737ab5c7ed:
>
>   multiboot: Use the "reserved" type for non-ram zones (2016-10-07 11:54:44 +0900)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/geoff/kexec-tools.git for-merge-arm64-dist
>
> for you to fetch changes up to 3552a3e85a910688d932535549b35354a54927ad:
>
>   arm64: Add missing kexec dist files (2016-10-10 14:15:21 -0700)
>
> ----------------------------------------------------------------
> Geoff Levand (2):
>       arm64: Cleanup kexec Makefile
>       arm64: Add missing kexec dist files
>
>  kexec/arch/arm64/Makefile | 15 +++++++++------
>  1 file changed, 9 insertions(+), 6 deletions(-)
>

Reviewed-by: Matthias Brugger <mbrugger@suse.com>

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

* [PATCH 0/2] arm64 kexec-tools fixups
  2016-10-11 10:20 ` [PATCH 0/2] arm64 kexec-tools fixups Matthias Brugger
@ 2016-10-13  9:25   ` Simon Horman
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2016-10-13  9:25 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Oct 11, 2016 at 12:20:41PM +0200, Matthias Brugger wrote:
> 
> 
> On 10/10/2016 11:22 PM, Geoff Levand wrote:
> >Hi Simon,
> >
> >Fixes for 'make tarball'.  Please apply.
> >
> >-Geoff
> >
> >The following changes since commit 6e8804f9ca67bee65aedd5e1cdf504737ab5c7ed:
> >
> >  multiboot: Use the "reserved" type for non-ram zones (2016-10-07 11:54:44 +0900)
> >
> >are available in the git repository at:
> >
> >  git://git.kernel.org/pub/scm/linux/kernel/git/geoff/kexec-tools.git for-merge-arm64-dist
> >
> >for you to fetch changes up to 3552a3e85a910688d932535549b35354a54927ad:
> >
> >  arm64: Add missing kexec dist files (2016-10-10 14:15:21 -0700)
> >
> >----------------------------------------------------------------
> >Geoff Levand (2):
> >      arm64: Cleanup kexec Makefile
> >      arm64: Add missing kexec dist files
> >
> > kexec/arch/arm64/Makefile | 15 +++++++++------
> > 1 file changed, 9 insertions(+), 6 deletions(-)
> >
> 
> Reviewed-by: Matthias Brugger <mbrugger@suse.com>

Thanks, applied.

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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-10 21:22 [PATCH 0/2] arm64 kexec-tools fixups Geoff Levand
2016-10-10 21:22 ` [PATCH 1/2] arm64: Cleanup kexec Makefile Geoff Levand
2016-10-10 21:22 ` [PATCH 2/2] arm64: Add missing kexec dist files Geoff Levand
2016-10-11 10:20 ` [PATCH 0/2] arm64 kexec-tools fixups Matthias Brugger
2016-10-13  9:25   ` Simon Horman

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).