plymouth: suppress "find" errors
parent
f2a716d47c
commit
8aa36728f5
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Include KMS capable drm drivers
|
# Include KMS capable drm drivers
|
||||||
for modname in $(find "$srcmods/kernel/drivers/gpu/drm" -name '*.ko'); do
|
for modname in $(find "$srcmods/kernel/drivers/gpu/drm" -name '*.ko' 2>/dev/null); do
|
||||||
nm -uPA $modname | grep -q drm_crtc_init && instmods $modname
|
nm -uPA $modname | grep -q drm_crtc_init && instmods $modname
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue