View previous topic :: View next topic |
Author |
Message |
flammenflitzer Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/409843123410eaf2de9947.gif)
Joined: 25 Nov 2003 Posts: 3541 Location: Berlin
|
Posted: Sun Apr 03, 2022 4:28 pm Post subject: [gelöst]kernel > 5.15 - nvidia - CONFIG_DRM_KMS_HELPER |
|
|
Hallo, bei den gentoo-sorces ab 5.16 kommt bei der Installation der nvidia Treiber die Meldung Code: | * CONFIG_DRM_KMS_HELPER: is not set but needed for Xorg auto-detection
* of drivers (no custom config), and for wayland / nvidia-drm.modeset=1.
* Cannot be directly selected in the kernel's menuconfig, and may need
* selection of a DRM device even if unused, e.g. CONFIG_DRM_AMDGPU=m or
* DRM_I915=y, DRM_NOUVEAU=m also acceptable if a module and not built-in.
* Please check to make sure these options are set correctly.
* Failure to do so may cause unexpected problems. |
Die Option ist in der .config nicht mehr verfügbar. Code: | x11-drivers/nvidia-drivers-510.60.02 |
Warum muss ich hier Code: | CONFIG_DRM_NOUVEAU=m | aktivieren, um die Option verfügbar zu machen?
MfG
Last edited by flammenflitzer on Fri Apr 08, 2022 1:35 pm; edited 1 time in total |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
mike155 Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
Joined: 17 Sep 2010 Posts: 4438 Location: Frankfurt, Germany
|
Posted: Sun Apr 03, 2022 5:22 pm Post subject: |
|
|
Hmm! Bei mir ist diese Option verfügbar, obwohl CONFIG_DRM_NOUVEAU deaktiviert ist.
Der Hilfetext zu CONFIG_DRM_KMS_HELPER sagt übrigens:
Code: | Depends on: HAS_IOMEM [=y] && DRM [=y]
|
Sind HAS_IOMEM und DRM bei Dir aktiviert? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
flammenflitzer Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/409843123410eaf2de9947.gif)
Joined: 25 Nov 2003 Posts: 3541 Location: Berlin
|
Posted: Sun Apr 03, 2022 5:47 pm Post subject: |
|
|
Code: | CONFIG_HAS_IOMEM=y
CONFIG_DRM=m |
auch bei fehlt Code: | CONFIG_DRM_KMS_HELPER |
cat .config | grep DRM | grep -v \# | grep -v ^$
Code: | CONFIG_DRM=m
CONFIG_DRM_PANEL=y
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
CONFIG_DRM_LEGACY=y
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
CONFIG_DRM_NOMODESET=y |
mit NOUVEA
cat .config | grep DRM | grep -v \# | grep -v ^$ Code: | CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
CONFIG_DRM_TTM=m
CONFIG_DRM_TTM_HELPER=m
CONFIG_DRM_I2C_CH7006=m
CONFIG_DRM_I2C_SIL164=m
CONFIG_DRM_NOUVEAU=m
CONFIG_DRM_PANEL=y
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
CONFIG_DRM_LEGACY=y
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
CONFIG_DRM_NOMODESET=y |
Code: | ... and may need selection of a DRM device even if unused... | Ich will das nur verstehen... Ist nicht soo wichtig.... |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
pietinger Moderator
![Moderator Moderator](/images/ranks/rank-mod.gif)
Joined: 17 Oct 2006 Posts: 5394 Location: Bavaria
|
Posted: Sun Apr 03, 2022 6:28 pm Post subject: |
|
|
flammenflitzer,
möglicherweise ist der Unterschied zwischen Dir und Mike, dass Mike das hier aktiviert hat:
Code: | Device Driver --->
Graphics support --->
[*] Simple framebuffer driver |
Das ist der "CONFIG_DRM_SIMPLEDRM" und der ->
Selects: DRM_GEM_SHMEM_HELPER [=y] && DRM_KMS_HELPER [=y]
Wenn Du also nicht den "CONFIG_DRM_NOUVEAU=m" enabeln willst, wäre das eine Option. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
flammenflitzer Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/409843123410eaf2de9947.gif)
Joined: 25 Nov 2003 Posts: 3541 Location: Berlin
|
Posted: Sun Apr 03, 2022 7:17 pm Post subject: |
|
|
cat .config | grep DRM | grep -v \# | grep -v ^$ Code: | CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
CONFIG_DRM_GEM_SHMEM_HELPER=m
CONFIG_DRM_I2C_CH7006=m
CONFIG_DRM_I2C_SIL164=m
CONFIG_DRM_PANEL=y
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
CONFIG_DRM_SIMPLEDRM=m
CONFIG_DRM_LEGACY=y
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
CONFIG_DRM_NOMODESET=y | Habe ich gemacht. Dankeschön ![Very Happy :D](images/smiles/icon_biggrin.gif) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|