Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 138162 - ipw3945d is not bound on module like mentioned in einfo using testing system
Summary: ipw3945d is not bound on module like mentioned in einfo using testing system
Status: RESOLVED DUPLICATE of bug 129047
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Mobile Herd (OBSOLETE)
URL:
Whiteboard:
Keywords:
: 139718 (view as bug list)
Depends on:
Blocks:
 
Reported: 2006-06-27 02:12 UTC by Florian Manschwetus
Modified: 2007-01-26 11:13 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Florian Manschwetus 2006-06-27 02:12:53 UTC
install ipw3945 /sbin/modprobe --ignore-install ipw3945; sleep 0.5; /sbin/ipw3945d --quiet
remove ipw3945 /sbin/ipw3945d --kill; /sbin/modprobe -r --ignore-remove ipw3945

in /etc/modprobe.conf
are bypassed when udev loads the module, or hibernate skript unloads module
Comment 1 Nick Devito 2006-07-04 16:30:56 UTC
I'm just guessing here, but, maybe udev just calls insmod? 
Comment 2 Jakub Moc (RETIRED) gentoo-dev 2006-07-08 22:48:46 UTC
*** Bug 139718 has been marked as a duplicate of this bug. ***
Comment 3 Christian Hesse 2006-07-09 05:30:02 UTC
Ok, ipw3945 is loaded before /etc/modules.autoload.d/kernel-2.6 is processed. So I think it is a udev problem.

As I did not like the idea of creating a new script in /etc/init.d/ just to start the regulatory daemon I've worked around it by adding this to the preup function in /etc/conf.d/net:

if [ ${IFACE} == "wlan0" ] && ! ipw3945d --isrunning; then
 einfo "Starting ipw3945 regulatory daemon"
 ipw3945d --quiet
 sleep 3
fi

That works fine for me.
Comment 4 Jakub Moc (RETIRED) gentoo-dev 2007-01-26 11:13:43 UTC

*** This bug has been marked as a duplicate of bug 129047 ***