Hello everyone,
I am trying to install FreeBSD on my computer, but I am encountering issues with the graphics card.
My hardware is :
First attempt :
I installed the standard DRM driver:
Result :
I noticed that
According to linux-hardware, this chip (Lunar Lake) requires at least Linux 6.8.
Second attempt :
I tried with
Even though the version of Linux should be sufficient :
I still have the same issues :
Does anyone have an idea how I could get my graphics card to work?
Is there a specific firmware or a different driver (like the new xe driver) I should be using for Lunar Lake?
Thank you!
I am trying to install FreeBSD on my computer, but I am encountering issues with the graphics card.
My hardware is :
Intel(R) Arc(TM) 140V GPU (16GB) Family, compatible Intel CorporationFirst attempt :
I installed the standard DRM driver:
Code:
pkg install drm-kmod
sysrc kld_list+="i915kms"
reboot
Result :
- No directory found:
/dev/dri(where the interface with the graphics card is supposed to be). - When I type
dmesg | grep drm, I get :
Code:
[drm] Got Intel graphics stolen memory base 0x0, size 0x0
I noticed that
drm-kmod is a port of Linux 6.6 :
Code:
pkg info -d drm-kmod
drm-kmod-20250428 :
gpu-firmware-kmod-20250109,1
drm-66-kmod-6.6.25.1500505_8
According to linux-hardware, this chip (Lunar Lake) requires at least Linux 6.8.
Second attempt :
I tried with
drm-latest-kmod because it is supposed to be a port of Linux 6.9:
Code:
pkg delete drm-kmod drm-66-kmod
pkg install drm-latest-kmod
sysrc kld_list+="i915kms"
reboot
Even though the version of Linux should be sufficient :
Code:
pkg info -d drm-latest-kmod
drm-latest-kmod-6.9.1500505_1
I still have the same issues :
- No
/dev/drientries. - dmesg still shows:
[drm] Got Intel graphics stolen memory base 0x0, size 0x0
Does anyone have an idea how I could get my graphics card to work?
Is there a specific firmware or a different driver (like the new xe driver) I should be using for Lunar Lake?
Thank you!