mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
12 lines
168 B
Text
12 lines
168 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Load the loop device kernel module.
|
||
|
#
|
||
|
|
||
|
if modinfo loop 1> /dev/null 2> /dev/null ; then
|
||
|
if ! lsmod | grep -wq "^loop" ; then
|
||
|
modprobe loop
|
||
|
fi
|
||
|
fi
|
||
|
|