main/devicepkg-dev: remove Image.gz from list of kernels to consider (!1014)

This breaks booting on Librem 5 and is not needed on any device
currently using downstreamkernel_package, so remove it.
This commit is contained in:
Luca Weiss 2020-02-29 20:45:23 +01:00 committed by Oliver Smith
parent 325ac07381
commit 3fe7e1601c
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
2 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ install -D "$builddir/include/config/kernel.release" \
# shellcheck disable=SC2164
cd "$builddir/arch/$_carch/boot"
_target="$pkgdir/boot/vmlinuz-$_flavor"
for _zimg in zImage-dtb Image.gz-dtb Image.gz *zImage Image; do
for _zimg in zImage-dtb Image.gz-dtb *zImage Image; do
[ -e "$_zimg" ] || continue
echo "zImage found: $_zimg"
install -Dm644 "$_zimg" "$_target"