18 lines
385 B
Text
18 lines
385 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
# This script triggers late initialization of some platform
|
||
|
# drivers that cannot be probed at boot time, because for
|
||
|
# example they use firmware blobs on partitions that are
|
||
|
# not mounted during early kernel startup.
|
||
|
|
||
|
depend() {
|
||
|
need localmount dev
|
||
|
before wpa_supplicant
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting deferred initcalls"
|
||
|
cat /proc/deferred_initcalls
|
||
|
eend 0
|
||
|
}
|