6818cd6bac
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. Disabled by default, can be enabled on per-device basis.
17 lines
385 B
Text
17 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
|
|
}
|