Re: Driver doesn't compile to .ko Huub wrote:
> Hi,
>
> Running Slack 12, I've been trying to compile a kerneldriver for
> the ACX100 Wificard. According to the sf.net page for ACX, this
> should be possible despite ACX not being a kerneloption. I've
> installed and compiled 3 times now according to their directions
> (create drivers/net/wireless/acx, untar into
> drivers/net/wireless/acx, make menuconfig, make && make
> modules_install) but it doesn't deliver the acx.ko
Did you remember to make the modification to the Makefile in the
directory above the one you made for acx, as they describe in their HOWTO?
Just as a refresher, the modification is:
echo 'obj-m += acx/' >> Makefile
> Now I want to create the acx.ko myself, but how should I do that?
> I've tried to find it on the net, but found no clear directions.
They have a description of how to build the module outside of the kernel
tree in their HOWTO, did you try that?
Does/did anything in the acx directory compile? Any object files (*.o)
in there after the make? |