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 /install/base | |
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 'install/base')
-rw-r--r-- | install/base | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/base b/install/base index d1fc19b..01d5a04 100644 --- a/install/base +++ b/install/base @@ -17,7 +17,9 @@ install () for f in /usr/lib/klibc/bin/*; do if [ "$(basename $f)" = "modprobe" ]; then # force putting modprobe in /sbin + # add symlink for compatibility add_file $f /sbin/$(basename $f) + add_symlink2 /bin/modprobe /sbin/modprobe else add_file $f /bin/$(basename $f) fi |