New comment by Anachron on void-packages repository https://github.com/void-linux/void-packages/pull/33556#issuecomment-1074358467 Comment: After digging a bit more I believe the issue is that https://github.com/void-linux/void-mklive/blob/master/mkplatformfs.sh.in#L180 is not trigger for my `platformfs` build, even though I have the tools but not the files: ```sh ls -lisah usr/bin/{mkimage,dracut} 919096 88K -rwxr-xr-x 1 root root 85K 14. Jul 2021 usr/bin/dracut 919116 300K -rwxr-xr-x 1 root root 299K 21. Jan 01:10 usr/bin/mkimage ``` ```sh LC_ALL=C ls -lisah boot/*nitrd ls: cannot access 'boot/*nitrd': No such file or directory ``` Probably because of https://github.com/void-linux/void-mklive/blob/master/mkplatformfs.sh.in#L182, I build for `aarch64` but it checks for `arm` in `XBPS_TARGET_ARCH`. Edit: Yes, it builds the `initrd` now by deleting https://github.com/void-linux/void-mklive/blob/master/mkplatformfs.sh.in#L182. ```sh file boot/* boot/config-5.15.30_1: Linux make config build file, ASCII text boot/dtbs: directory boot/initramfs-5.15.30_1.img: regular file, no read permission boot/initrd: regular file, no read permission boot/uInitrd: u-boot legacy uImage, Void Linux, Linux/ARM, RAMDisk Image (gzip), 48964431 bytes, Mon Mar 21 20:09:31 2022, Load Address: 00000000, Entry Point: 00000000, Header CRC: 0X254158BA, Data CRC: 0XCC2EB7BA boot/vmlinux-5.15.30_1: Linux kernel ARM64 boot executable Image, little-endian, 4K pages ``` I'll transfer it to my sdcard once more and check if its bootable. Edit: Still doesn't boot. I'll keep investigating.