troubles with bluetooth configuration

Peter Wemm peter at wemm.org
Wed Mar 30 15:05:43 PST 2005


On Wednesday 30 March 2005 09:37 am, Maksim Yevmenkin wrote:
> Hello,
>
> >  When I try to initiate my local bt (/etc/rc.bluetooth start ubt0),
> > I receive an error message: Can`t load ng_bluetooth.
>
> ok, what is the exact error message?
>

There is a bug in the module declaration in 
sys/netgraph/bluetooth/common/ng_bluetooth.c

Near 'bluetooth_mod' there is a string in the structure that says 
"bluetooth" when it should say "ng_bluetooth".

--- ng_bluetooth.c      7 Jan 2005 01:45:42 -0000       1.5
+++ ng_bluetooth.c      30 Mar 2005 23:04:44 -0000
@@ -243,7 +243,7 @@
  */

 static moduledata_t    bluetooth_mod = {
-       "bluetooth",
+       "ng_bluetooth",
        bluetooth_modevent,
        NULL
 };

The problem is that it is exporting a module called "bluetooth" when the 
scripts and module loader are expecting "ng_bluetooth".
-- 
Peter Wemm - peter at wemm.org; peter at FreeBSD.org; peter at yahoo-inc.com
"All of this is for nothing if we don't go to the stars" - JMS/B5


More information about the freebsd-current mailing list