diff options
author | PÁLI Gábor János <pali.gabor@gmail.com> | 2022-12-30 14:47:25 +0100 |
---|---|---|
committer | PÁLI Gábor János <pali.gabor@gmail.com> | 2022-12-30 14:47:25 +0100 |
commit | 1c1b02874e1749d61b9b1680f744bf8470147416 (patch) | |
tree | 90578f8f7b73792dd41129b71bc73b0eefd81d32 /aports/openrc/hwdrivers.initd | |
parent | 1b300a88b562f707ccd1b67229bd878930c9766c (diff) | |
download | freebsd-wifibox-alpine-1c1b02874e1749d61b9b1680f744bf8470147416.zip |
Move to Linux 5.15.85 + Alpine 3.17.0.
Diffstat (limited to 'aports/openrc/hwdrivers.initd')
-rw-r--r-- | aports/openrc/hwdrivers.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aports/openrc/hwdrivers.initd b/aports/openrc/hwdrivers.initd index 80184c9..c713990 100644 --- a/aports/openrc/hwdrivers.initd +++ b/aports/openrc/hwdrivers.initd @@ -16,10 +16,10 @@ start() { fi ebegin "Loading hardware drivers" - find /sys -name modalias -type f -print0 | xargs -0 sort -u \ + find /sys -name modalias -type f -print0 2> /dev/null | xargs -0 sort -u \ | xargs modprobe -b -a 2> /dev/null # we run it twice so we detect all devices - find /sys -name modalias -type f -print0 | xargs -0 sort -u \ + find /sys -name modalias -type f -print0 2> /dev/null | xargs -0 sort -u \ | xargs modprobe -b -a 2> /dev/null # check if framebuffer drivers got pulled in |