| View previous topic :: View next topic |
| Author |
Message |
TheLexx n00b


Joined: 04 Dec 2005 Posts: 26 Location: Austin Tx
|
Posted: Fri May 04, 2012 6:46 pm Post subject: prevent X driver from compiling/installing |
|
|
| Whenever I use the command "emerge --update --deep world" the system attempts to compile a large number of video drivers. I would like to avoid compiling unneeded drivers. As it turns out that one driver will lockup the system and prevent X from starting unless I manually remove the driver package. I tried adding the unneeded drivers to /etc/portage/package.mask , but the system complained that the packages were required. I tried adding VIDEO_CARDS="ati -trident" in /etc/make.conf but was told that negatives were not allowed. |
|
| Back to top |
|
 |
EatMeerkats Apprentice


Joined: 15 Mar 2006 Posts: 234
|
Posted: Fri May 04, 2012 7:57 pm Post subject: |
|
|
| All you need is VIDEO_CARDS="ati" then… specifying that will automatically prevent the other drivers from being built. |
|
| Back to top |
|
 |
TheLexx n00b


Joined: 04 Dec 2005 Posts: 26 Location: Austin Tx
|
Posted: Fri May 04, 2012 8:04 pm Post subject: |
|
|
| EatMeerkats wrote: | | All you need is VIDEO_CARDS="ati" then… specifying that will automatically prevent the other drivers from being built. |
That did not work.
gentoo2012 ~ # grep VIDEO_CARDS /etc/make.conf
VIDEO_CARDS="ati"
gentoo2012 ~ # emerge --pretend --update --deep world | grep xf86
[ebuild N ] x11-drivers/xf86-video-nv-2.1.18
[ebuild N ] x11-drivers/xf86-video-sis-0.10.3 USE="dri"
[ebuild N ] x11-drivers/xf86-video-dummy-0.3.4
[ebuild N ] x11-drivers/xf86-video-trident-1.3.4
[ebuild N ] x11-drivers/xf86-video-nouveau-0.0.16_pre20111109
[ebuild N ] x11-drivers/xf86-video-vmware-11.0.3
[ebuild N ] x11-drivers/xf86-video-openchrome-0.2.905 USE="dri -debug -viaregtool"
[ebuild N ] x11-drivers/xf86-video-r128-6.8.1 USE="dri -debug"
[ebuild N ] x11-drivers/xf86-video-intel-2.17.0-r3 USE="dri -sna"
[ebuild N ] x11-drivers/xf86-video-v4l-0.2.0 USE="-debug"
[ebuild N ] x11-drivers/xf86-video-glint-1.2.6
[ebuild N ] x11-drivers/xf86-video-mga-1.4.13 USE="dri"
[ebuild N ] x11-drivers/xf86-video-savage-2.3.3 USE="dri"
[ebuild N ] x11-drivers/xf86-video-mach64-6.9.0 USE="dri"
[ebuild N ] x11-drivers/xf86-video-neomagic-1.2.5
[ebuild N ] x11-drivers/xf86-video-tdfx-1.4.3 USE="dri -debug" |
|
| Back to top |
|
 |
EatMeerkats Apprentice


Joined: 15 Mar 2006 Posts: 234
|
Posted: Fri May 04, 2012 8:09 pm Post subject: |
|
|
1) Add a "-t" to your emerge command and it'll show you what is pulling those in.
2) I bet it'll be xorg-drivers, in which case you'll have to add "-N" to your emerge command to get it to pick up the new settings. |
|
| Back to top |
|
 |
TheLexx n00b


Joined: 04 Dec 2005 Posts: 26 Location: Austin Tx
|
Posted: Fri May 04, 2012 8:43 pm Post subject: |
|
|
Thanks EatMeerkats, It seams like running the -N on just xorg-drivers will work.
emerge -N --update xorg-drivers
now
emerge --pretend --update --deep world | grep xf86
yealds nothing |
|
| Back to top |
|
 |
|