netgraph.ko vs. compiled in.

2004-01-01 Thread Bill Moran
I'm not sure if this is a bug, or intended behaviour. If the behaviour is intended, documentation improvements may be in order. If I build a kernel with options netgraph, in order to use mpd, netgraph.ko is still loaded at boot (with an error) but mpd does not work. If I build the kernel without

Re: netgraph.ko vs. compiled in.

2004-01-01 Thread Matthew Seaman
On Thu, Jan 01, 2004 at 02:38:09PM -0500, Bill Moran wrote: If I build a kernel with options netgraph, in order to use mpd, netgraph.ko is still loaded at boot (with an error) but mpd does not work. You can't simultaneously load a .ko and have the same code compiled into the kernel. If I

Re: netgraph.ko vs. compiled in.

2004-01-01 Thread Bill Moran
Matthew Seaman wrote: On Thu, Jan 01, 2004 at 02:38:09PM -0500, Bill Moran wrote: If I build a kernel with options netgraph, in order to use mpd, netgraph.ko is still loaded at boot (with an error) but mpd does not work. You can't simultaneously load a .ko and have the same code compiled into

Re: netgraph.ko vs. compiled in.

2004-01-01 Thread Matthew Seaman
On Thu, Jan 01, 2004 at 03:02:41PM -0500, Bill Moran wrote: Matthew Seaman wrote: It's generally best either to kldload all of the netgraph modules you require for this purpose or to compile them all into the kernel. One way, or the other, but not a mixture of both. I would go beyond