Reputation:
I'm learning to try to make minimal Linux following the tutorial, I tried load a module but I get an error like this:
/ $ insmod kdb.ko
insmod: can't insert 'kdb.ko': Function not implemented
/ $
I thought, when configuring the kernel I missed
something, knowledge of my kernel configuration is still minimal, does anyone know what options to get insmod
implemented?
NOTE : My configuration is done with the alllnoconfig
option
Upvotes: 1
Views: 328
Reputation: 2330
When you use allnoconfig
, CONFIG_MODULES
will not be enabled. You need this config minimum to be enabled for insmod
or modprobbe
to work.
Upvotes: 1