diff options
author | Nick Hanley <nicholasjhanley@gmail.com> | 2022-02-26 17:55:55 -0500 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2022-03-16 09:29:38 +0000 |
commit | e34cde5d64bbffd89645831e3086aaa14c214b9d (patch) | |
tree | 085b464c0f20cf7e3e083b73fc81bf9e191ee074 | |
parent | 3abb7dfadace4477f26c41c4d6a80b85c4252322 (diff) | |
download | alpine-conf-e34cde5d64bbffd89645831e3086aaa14c214b9d.zip |
Revert "update-kernel: fix warning extra firmware "" not found"
This reverts commit ce8ad8bd402baed5c48becc6aad155d838dea21a.
-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 8411f89..51790e2 100644 --- a/update-kernel.in +++ b/update-kernel.in @@ -301,7 +301,7 @@ for _xfw in "$modloopfw"; do if [ -f "$ROOT/lib/firmware/$_xfw" ]; then install -pD "$ROOT/lib/firmware/$_xfw" \ "$MODLOOP"/modules/firmware/"$_xfw" - elif [ -n "$_xfw" ]; then + else echo "Warning: extra firmware \"$_xfw\" not found!" fi done |