Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion srcpkgs/asahi-base/files/tinyramfs-hook-asahi
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ do
copy_kmod "$_mod"
done

for _bin in umount cpio cp grep cat sed seq
for _bin in umount cpio cp grep cat tr seq
do
copy_exec "$_bin"
done
4 changes: 2 additions & 2 deletions srcpkgs/asahi-base/files/tinyramfs-hook-asahi.init
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ mkdir -p "$mountpoint"
while grep -q "$mountpoint" /proc/mounts; do
umount "$mountpoint"
done
esp_uuid="$(cat /proc/device-tree/chosen/asahi,efi-system-partition 2> /dev/null | sed 's/\x00//')"
mount "PARTUUID=$esp_uuid" "$mountpoint"
esp_uuid="$(cat /proc/device-tree/chosen/asahi,efi-system-partition 2> /dev/null | tr -d '\0')"
mount -t vfat "/dev/disk/by-partuuid/$esp_uuid" "$mountpoint"

print 'asahi: unpacking vendor firmware into initramfs'
cpio -i < "$mountpoint/vendorfw/firmware.cpio"
Expand Down
4 changes: 2 additions & 2 deletions srcpkgs/asahi-base/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template file for 'asahi-base'
pkgname=asahi-base
version=20250716
revision=2
version=20260506
revision=1
archs="aarch64*"
depends="linux-asahi m1n1 asahi-uboot speakersafetyd dracut asahi-scripts"
short_desc="Void Linux Apple Silicon support package"
Expand Down