linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] buildtar: Copy vmlinuz for arm64
@ 2018-07-18 17:15 Major Hayden
  2018-07-18 23:19 ` Masahiro Yamada
  0 siblings, 1 reply; 2+ messages in thread
From: Major Hayden @ 2018-07-18 17:15 UTC (permalink / raw)
  To: linux-kbuild, linux-kernel; +Cc: Major Hayden

Copy the architecture-specific compressed kernel image to the
directory used to make the tar package.

Signed-off-by: Major Hayden <major@redhat.com>
---
 scripts/package/buildtar | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/package/buildtar b/scripts/package/buildtar
index e8cc72a51b32..a87c8cbc1ba3 100755
--- a/scripts/package/buildtar
+++ b/scripts/package/buildtar
@@ -80,6 +80,9 @@ case "${ARCH}" in
 	alpha)
 		[ -f "${objtree}/arch/alpha/boot/vmlinux.gz" ] && cp -v -- "${objtree}/arch/alpha/boot/vmlinux.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
 		;;
+	arm64)
+		[ -f "${objtree}/arch/arm64/boot/Image.gz" ] && cp -v -- "${objtree}/arch/arm64/boot/Image.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
+		;;
 	parisc*)
 		[ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
 		[ -f "${objtree}/lifimage" ] && cp -v -- "${objtree}/lifimage" "${tmpdir}/boot/lifimage-${KERNELRELEASE}"
-- 
2.17.1


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

* Re: [PATCH] buildtar: Copy vmlinuz for arm64
  2018-07-18 17:15 [PATCH] buildtar: Copy vmlinuz for arm64 Major Hayden
@ 2018-07-18 23:19 ` Masahiro Yamada
  0 siblings, 0 replies; 2+ messages in thread
From: Masahiro Yamada @ 2018-07-18 23:19 UTC (permalink / raw)
  To: Major Hayden; +Cc: Linux Kbuild mailing list, Linux Kernel Mailing List

2018-07-19 2:15 GMT+09:00 Major Hayden <major@redhat.com>:
> Copy the architecture-specific compressed kernel image to the
> directory used to make the tar package.
>
> Signed-off-by: Major Hayden <major@redhat.com>
> ---


Thanks for the patch,
but I applied Olof's one, which copy more files.

https://patchwork.kernel.org/patch/10523811/



>  scripts/package/buildtar | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/scripts/package/buildtar b/scripts/package/buildtar
> index e8cc72a51b32..a87c8cbc1ba3 100755
> --- a/scripts/package/buildtar
> +++ b/scripts/package/buildtar
> @@ -80,6 +80,9 @@ case "${ARCH}" in
>         alpha)
>                 [ -f "${objtree}/arch/alpha/boot/vmlinux.gz" ] && cp -v -- "${objtree}/arch/alpha/boot/vmlinux.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
>                 ;;
> +       arm64)
> +               [ -f "${objtree}/arch/arm64/boot/Image.gz" ] && cp -v -- "${objtree}/arch/arm64/boot/Image.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
> +               ;;
>         parisc*)
>                 [ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
>                 [ -f "${objtree}/lifimage" ] && cp -v -- "${objtree}/lifimage" "${tmpdir}/boot/lifimage-${KERNELRELEASE}"
> --
> 2.17.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Best Regards
Masahiro Yamada

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

end of thread, other threads:[~2018-07-18 23:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-18 17:15 [PATCH] buildtar: Copy vmlinuz for arm64 Major Hayden
2018-07-18 23:19 ` Masahiro Yamada

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