diff options
-rw-r--r-- | update-kernel.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-kernel.in b/update-kernel.in index 51790e2..165a9a3 100644 --- a/update-kernel.in +++ b/update-kernel.in @@ -297,7 +297,7 @@ find $ROOT/lib/modules -type f -name "*.ko*" | xargs modinfo -F firmware | sort done # install extra firmware files in modloop (i.e. not detected by modinfo) -for _xfw in "$modloopfw"; do +for _xfw in $modloopfw; do if [ -f "$ROOT/lib/firmware/$_xfw" ]; then install -pD "$ROOT/lib/firmware/$_xfw" \ "$MODLOOP"/modules/firmware/"$_xfw" |