01-static-devnodes.sh (230B)
1 # Some kernel modules must be loaded before starting udev(7). 2 # Load them by looking at the output of `kmod static-nodes`. 3 4 for f in $(kmod static-nodes 2>/dev/null|awk '/Module/ {print $2}'); do 5 modprobe -bq $f 2>/dev/null 6 done