Closed dkwo closed 1 year ago
Does this patch fix the bug for you?
diff --git a/lib/common.sh b/lib/common.sh
index 1f72a69..db7477a 100755
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -95,7 +95,7 @@ copy_kmod()
{
modprobe -S "$kernel" -D "$1" 2> /dev/null |
- while read -r _ _mod || [ "$_mod" ]; do
+ while read -r _ _mod _ || [ "$_mod" ]; do
case $_mod in /*) copy_file "$_mod" "$_mod" 0644; esac
done
}
it works, thank you! now the initram is generated, and audio works fine. can you merge this into master, so i can add the patch to void linux repos?
With the following
I do get an error, and the image is not created:
It seems that tinyramfs is incorrectly parsing my modprobe.d configuration.