kms-drm-current use /boot/loader.connf to can't load! Add `kld_list="amdgpu"` and `kld_list="/boot/modules/amdgpu.ko`" to /boot/loader.conf and /etc/rc.conf both can't load. must be use `kldload amdgpu` to load it? CPU: AMD Ryzen 3700U GPU: VEGA Graphic 10 FreeBSD Version: 13-CURRENT r360211 amd64
This is intentional, it is not possible to load the drm kmods from /boot/loader.conf or from the loader. Put kld_list="/boot/modules/amdgpu.ko" (or any other module you need to load) to have the module load during boot.
(In reply to Niclas Zeising from comment #1) > Put kld_list="/boot/modules/amdgpu.ko" (or any other module you need to load) to have the module load during boot... ...into /etc/rc.conf, e.g. using sysrc: sysrc kld_list+="/boot/modules/amdgpu.ko" Make sure to remove amdgpu from /boot/loader.conf.
Yeah. I probably got interrupted halfway through and forgot to finish that sentence, sorry.