summaryrefslogtreecommitdiff
path: root/hook-functions
diff options
context:
space:
mode:
Diffstat (limited to 'hook-functions')
-rw-r--r--hook-functions9
1 files changed, 7 insertions, 2 deletions
diff --git a/hook-functions b/hook-functions
index 9d59dc1..8376be3 100644
--- a/hook-functions
+++ b/hook-functions
@@ -71,8 +71,13 @@ manual_add_modules()
# Only print warning for missing fw of loaded module
# or forced loaded module
if [ ! -e "/lib/firmware/${firmware}" ] \
- && [ ! -e "/lib/firmware/${version}/${firmware}" ] \
- && [ -e /proc/modules ]; then
+ && [ ! -e "/lib/firmware/${version}/${firmware}" ] ; then
+ # Only warn about missing firmware if
+ # /proc/modules exists
+ if [ ! -e /proc/modules ] ; then
+ continue
+ fi
+
if grep -q "^$(basename "${mam_x}" .ko)[[:space:]]" \
/proc/modules \
|| grep -q "^$(basename "${mam_x}" .ko)" \