summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorVeronika Kabatova <vkabatov@redhat.com>2022-12-14 14:20:02 +0100
committerMasahiro Yamada <masahiroy@kernel.org>2022-12-17 21:55:04 +0900
commit731c4eac848ff9dd42776da8ed3407b257e3abf0 (patch)
treee2392a72d7fd6705e763d6b40e583dbf6832faa2 /scripts
parent19331e84c3873256537d446afec1f6c507f8c4ef (diff)
downloadlinux-731c4eac848ff9dd42776da8ed3407b257e3abf0.tar.bz2
buildtar: fix tarballs with EFI_ZBOOT enabled
When CONFIG_EFI_ZBOOT is enabled, the binary name is not Image.gz anymore but vmlinuz.efi. No vmlinuz gets put into the tarball as the buildtar script doesn't recognize this name. Remedy this by adding the binary name to the list of acceptable files to package. Reported-by: CKI Project <cki-project@redhat.com> Signed-off-by: Veronika Kabatova <vkabatov@redhat.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/package/buildtar2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/buildtar b/scripts/package/buildtar
index cb54c7f1aa80..4d6f0b128efd 100755
--- a/scripts/package/buildtar
+++ b/scripts/package/buildtar
@@ -122,7 +122,7 @@ case "${ARCH}" in
fi
;;
arm64)
- for i in Image.bz2 Image.gz Image.lz4 Image.lzma Image.lzo ; do
+ for i in Image.bz2 Image.gz Image.lz4 Image.lzma Image.lzo vmlinuz.efi ; do
if [ -f "${objtree}/arch/arm64/boot/${i}" ] ; then
cp -v -- "${objtree}/arch/arm64/boot/${i}" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
break