On Mon, Dec 15, 2025 at 11:22:08AM +0000, Sad Clouds wrote: > The above command executes correctly on amd64 port, however I cannot > find any reference to wg(4) driver in src/sys/arch/amd64/conf/GENERIC > nor any other files that this config includes. Also "config -x /netbsd" > shows nothing on amd64.
On amd64 it probably auto-loads the wg module, e.g. /stand/amd64/11.99.4/modules/if_wg/if_wg.kmod This is not allowed with kern.securelevel = 1 (as your evbarm kernel probably is running). You can either add "pseudo-device wg" to your kernel configuration, or add if_wg to /etc/modules.conf and reboot. Martin
