PCI Dual Serial Cards

Okay driver works, I just had to make and make ld and I see all 14.


However when I reboot the drivers are not loaded again and I have to go in and make ld them again. How do I make the drivers do this at boot by default?

To load the drivers I can also use:

Code:
kldload -v ./mcs9865_uart.ko
 
To load module at boot time just copy generated mcs9865_uart.ko file from compile directory to /boot/modules (as suggested for third party modules) or if it will not work just directly to /boot/kernel where all kernel modules resides. Then add to /boot/loader.conf file following line:
Code:
mcs9865_uart_load="YES"
Reboot and check boot screen.
 
Back
Top