Firewire Removed from 9.2

Hello,

I see that firewire(4) has been removed from 9.2 RELEASE. If I install 9.2 RELEASE, will I still be able to kldload sbp to get my firewire drive working?

Thanks, Aric
 
If you want it loaded everytime the system boots just add it to /boot/loader.conf. As @kpa said, it's only been removed from the GENERIC kernel and you should be able to load it.

Code:
sbp_load="YES"
 
Last edited by a moderator:
Or if you don't need it at boot, but still wana want to get it autoloaded on system boot, place this in your rc.conf:
Code:
kld_list="sbp xyz ..."
You can load as many modules as you want, and it speeds up my boot process a little (bootloader is just slow at loading modules here, even if it loads from SSD).
 
Back
Top