pmaports/main/postmarketos-base/rootfs-etc-init.d-deferred-initcalls

18 lines
385 B
Text
Raw Normal View History

#!/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
}