diff options
author | Thomas Bächler <thomas@archlinux.org> | 2007-05-12 19:10:00 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2007-05-12 19:10:00 +0200 |
commit | 6e3bc94f2d9a8f5823aeac9bce5418caf2a1d2b8 (patch) | |
tree | 94ecae80ccb3de7ec1307f21ea622656289eca1f /init | |
parent | 42d5e5df66eac7d9d8db1a091535878f6307675d (diff) | |
download | mkinitcpio-6e3bc94f2d9a8f5823aeac9bce5418caf2a1d2b8.tar.gz mkinitcpio-6e3bc94f2d9a8f5823aeac9bce5418caf2a1d2b8.tar.xz |
- adjusted all hooks for new modprobe path
- added compatibility symlink /bin/modprobe
- 0.5.14 release
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@206 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'init')
-rw-r--r-- | init | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -57,7 +57,7 @@ fi if [ "x${earlymodules}" != "x" ]; then for m in $(replace "${earlymodules}" ','); do - /bin/modprobe -q $m > /dev/null 2>&1 + /sbin/modprobe -q $m > /dev/null 2>&1 done fi @@ -67,7 +67,7 @@ for m in $MODULES; do TST="" eval "TST=\$mod_${m}" if [ "${TST}" != "disabled" ]; then - /bin/modprobe -q $m > /dev/null 2>&1 + /sbin/modprobe -q $m > /dev/null 2>&1 fi done |