fiss-linux

Some linux scripts for fiss
Log | Files | Refs | LICENSE

02-kmods.sh (277B)


      1 # vim: set ts=4 sw=4 et:
      2 
      3 [ -n "$VIRTUALIZATION" ] && return 0
      4 # Do not try to load modules if kernel does not support them.
      5 [ ! -e /proc/modules ] && return 0
      6 
      7 msg "Loading kernel modules..."
      8 modules-load -v | tr '\n' ' ' | sed 's:insmod [^ ]*/::g; s:\.ko\(\.gz\)\? ::g'
      9 echo