View Single Post
  #6   (View Single Post)  
Old 6th December 2008
BSDfan666 BSDfan666 is offline
Real Name: N/A, this is the interweb.
Banned
 
Join Date: Apr 2008
Location: Ontario, Canada
Posts: 2,223
Default

The FAQ explains building a kernel, but I'll help out a bit more..
  • Create a new kernel configuration file in /usr/src/sys/arch/i386/conf/.
    Code:
    # This is a comment, see? :-)
    #
    
    include "arch/i386/conf/GENERIC"
    
    # Bluetooth controllers
    ubt*	at uhub?		# USB Bluetooth
    
    # Bluetooth bus support
    bthub*	at ubt?
    
    # Bluetooth HID support
    # These are the included bluetooth drivers mfaridi, njoy.
    #bthidev* at bthub?		# misc human interface devices
    #btkbd*	at bthidev?		# keyboards
    #btms*	at bthidev?		# mice..
    #wskbd*	at btkbd? mux 1		# ..
    #wsmouse* at btms? mux 0	# .
  • Run config(8) as root, with the kernel file name as an argument.
  • Traverse into /usr/src/sys/arch/i386/compile/KERN/.
  • Type: sudo make depend; sudo make; sudo make out; sudo make install

Don't blindly copy & paste my instructions mfaridi. :-)
Reply With Quote