diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-03-19 22:27:18 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-03-19 22:27:18 +0000 |
commit | fca938a0731ad5c2c28de042aa753b976b506ee5 (patch) | |
tree | bd0d133f60f65d57b9bdb845ec8f736e4d33cb49 /x11-misc/bumblebee/files/bbswitch-setup | |
parent | 48205fa5a7c1eba35e6f5980db02aba73759de91 (diff) |
import bumblebee from deprecated repo
Diffstat (limited to 'x11-misc/bumblebee/files/bbswitch-setup')
-rw-r--r-- | x11-misc/bumblebee/files/bbswitch-setup | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-misc/bumblebee/files/bbswitch-setup b/x11-misc/bumblebee/files/bbswitch-setup new file mode 100644 index 00000000..7f6c7249 --- /dev/null +++ b/x11-misc/bumblebee/files/bbswitch-setup @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +start() { + # workaround the fact that udev may have loaded nvidia or nouveau + # and bbswitch refuses to turn off the card. + ebegin "Setting up bbswitch" + # make sure that the nvidia and nouveau modules are + # removed, then reload bbswitch. + for mod in nvidia nouveau; do + modprobe -r ${mod} 2> /dev/null # best effort + done + # reload bbswitch now + modprobe -r bbswitch + modprobe bbswitch # this inherits the options + eend 0 +} + |