aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rc.conf2
-rwxr-xr-xrc.sysinit2
2 files changed, 2 insertions, 2 deletions
diff --git a/rc.conf b/rc.conf
index 049cd4f..569565e 100644
--- a/rc.conf
+++ b/rc.conf
@@ -34,7 +34,7 @@ MOD_AUTOLOAD="yes"
MOD_BLACKLIST=()
#
# Modules to load at boot-up (in this order)
-# - prefix a module with a ! to disable it
+# - prefix a module with a ! to blacklist it
#
MODULES=(!usbserial)
# Scan for LVM volume groups at startup, required if you use LVM
diff --git a/rc.sysinit b/rc.sysinit
index 8d1047f..e21fe6c 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -104,7 +104,7 @@ if [ "$USELVM" = "yes" -o "$USELVM" = "YES" ]; then
elif [ -x /sbin/lvm -a -d /sys/block ]; then
# Kernel 2.6.x, LVM2 groups
stat_busy "Activating LVM2 groups"
- /sbin/lvm vgscan --ignorelockingfailure
+ /sbin/lvm vgscan --ignorelockingfailure --mknodes
/sbin/lvm vgchange --ignorelockingfailure -a y
stat_done
fi