New comment by jcgruenhage on void-packages repository https://github.com/void-linux/void-packages/pull/25546#issuecomment-707377637 Comment: Build for aarch64-musl just failed for me: ``` /void-packages/srcpkgs/pinebookpro-kernel/template: line 100: cd: /destdir/aarch64-linux-musl/pinebookpro-kernel-5.9/usr/lib/modules/5.9_1: No such file or directory => ERROR: pinebookpro-kernel-5.9_1: do_install: 'cd ${DESTDIR}/usr/lib/modules/${_kernver}' exited with 1 => ERROR: in do_install() at srcpkgs/pinebookpro-kernel/template:100 ``` Looking at the relevant line of `template`, I don't see anything there where musl would make a difference, but I'm building a non-musl variant now to make sure. EDIT: Same failure, will try to fix that. The diff I applied for getting it to build: ``` diff --git a/srcpkgs/pinebookpro-kernel/template b/srcpkgs/pinebookpro-kernel/template index 82695511b2..44709afdce 100644 --- a/srcpkgs/pinebookpro-kernel/template +++ b/srcpkgs/pinebookpro-kernel/template @@ -9,7 +9,7 @@ maintainer="Renato Aguiar " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz" -checksum=fad9a145afe36a27740779997720999a97dd7f58c7a60ad9b4054d94d71aaaa6 +checksum=3239a4ee1250bf2048be988cc8cb46c487b2c8a0de5b1b032d38394d5c6b1a06 patch_args="-Np1" python_version=3 @@ -22,7 +22,7 @@ preserve=yes hostmakedepends="tar xz bc elfutils-devel flex gmp-devel kmod libmpc-devel libressl-devel perl uboot-mkimage cpio python3" -_kernver="${version}_${revision}" +_kernver="${version}.0_${revision}" triggers="kernel-hooks" kernel_hooks_version="${_kernver}" ``` It's definitely not a nice solution (having that extra `.0` in the `_kernver` var), but I'm not sure where else to introduce that where it doesn't break something else... As for the change in the checksum: This is the checksum that the kernel sources have for me, maybe the old checksum was for the rc that @CameronNemo tested with earlier?