Summary: | x11-misc/bumblebee - init script should rmmod bbswitch | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Adam Feldman <np-hardass> |
Component: | [OLD] Core system | Assignee: | Adam Feldman <np-hardass> |
Status: | RESOLVED WORKSFORME | ||
Severity: | normal | CC: | kernel, mva, proxy-maint, rei4dan |
Priority: | Normal | Keywords: | PATCH |
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: | files/bumblebee.initd |
Description
Adam Feldman
2014-07-22 05:53:49 UTC
Created attachment 381318 [details]
files/bumblebee.initd
Appends rmmod of bbswitch kernel module to the init script.
Comment on attachment 381318 [details]
files/bumblebee.initd
--- files/bumblebee.initd 2012-06-05 15:47:49.000000000 +0200
+++ - 2014-07-22 22:17:48.398035868 +0200
@@ -20,4 +20,7 @@
ebegin "Stopping BumbleBee Daemon"
start-stop-daemon -K -p "${PIDFILE}" -R SIGTERM/10
eend $?
+ ebegin "Removing bbswitch module"
+ rmmod bbswitch
+ eend $?
}
Do you have parallel build enabled in openRC? Maybe it's trying to kill something prematurely. We should also get the proper errors instead of adding rmmod to random places to force module unloading :/ @kernel team, do you know how could the reporter try to get more information? (In reply to Pacho Ramos from comment #3) > Do you have parallel build enabled in openRC? Maybe it's trying to kill > something prematurely. We should also get the proper errors instead of > adding rmmod to random places to force module unloading :/ @kernel team, do > you know how could the reporter try to get more information? rc_parallel has not been set in my /etc/rc.conf file so it should be off by default. And certainly let me know if you can figure out a way for me to collect more information for you. Going to close this since I don't run into this issue on my new computer and I can't reproduce the original issue. |