Re: troubles with bluetooth configuration
From: Peter Wemm (peter_at_wemm.org)
Date: 03/31/05
- Previous message: Kevin Oberman: "Re: I'm impressed"
- In reply to: Maksim Yevmenkin: "Re: troubles with bluetooth configuration"
- Next in thread: Maksim Yevmenkin: "Re: troubles with bluetooth configuration"
- Reply: Maksim Yevmenkin: "Re: troubles with bluetooth configuration"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: freebsd-current@freebsd.org Date: Wed, 30 Mar 2005 15:05:42 -0800
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@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
- Previous message: Kevin Oberman: "Re: I'm impressed"
- In reply to: Maksim Yevmenkin: "Re: troubles with bluetooth configuration"
- Next in thread: Maksim Yevmenkin: "Re: troubles with bluetooth configuration"
- Reply: Maksim Yevmenkin: "Re: troubles with bluetooth configuration"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|