specify the kernel version when looking for a module for bug 208593
authorAndrew Gaffney <agaffney@gentoo.org>
Sat, 2 Feb 2008 17:34:13 +0000 (17:34 +0000)
committerAndrew Gaffney <agaffney@gentoo.org>
Sat, 2 Feb 2008 17:34:13 +0000 (17:34 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@582 67a159dc-881f-0410-a524-ba9dfbe2cb84

ChangeLog
generic/modprobe

index 6ec1085a69e61535f70fa1a588f5d9ab3704eb71..c7290138ae5b735eedb5ffff7d0167c572efb3ca 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  02 Feb 2008; Andrew Gaffney <agaffney@gentoo.org> generic/modprobe:
+  specify the kernel version when looking for a module for bug 208593
+
   02 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org>
   generic/initrd.defaults, generic/initrd.scripts:
   Removed runUdev, since we no longer use it.
index ff676f77fc92439f68b4374ec9f1e9dcf643a624..1591c427635c4022b263da3022e21b401acb4b2e 100755 (executable)
@@ -63,7 +63,7 @@ is_module_already_loaded() {
 
 real_mod_path() {
        # Find -name is no good since the return status is always zero
-       find /lib/modules | grep /"${1}${KSUFF}"
+       find "/lib/modules/${KV}" | grep /"${1}${KSUFF}"
 }
 
 modprobe2() {