On Fri, Dec 5, 2008 at 1:32 PM, eLIZAROW aNDREJ <[EMAIL PROTECTED]> wrote: > Hi all. > > Anyone can tell me how to compile driver bwi(4) as module separate from > kernel? > I want add some func to driver so i need recompile-load-unload it regulary. > May be there is another way? I don't know.
There are no drivers shipped or supported as modules, and almost no support for modules in general. The best you could do is to refactor the driver so that most of its functionality is done through function pointers, and then have an lkm provide implementations of them.