In /boot/config-$kernel_version
I see things like:
CONFIG_X86_TSC=y
CONFIG_CAN_TSCAN1=m
Now, I thought that y
stood for yes
, which means the option is set.
But how about m
?
In /boot/config-$kernel_version
I see things like:
CONFIG_X86_TSC=y
CONFIG_CAN_TSCAN1=m
Now, I thought that y
stood for yes
, which means the option is set.
But how about m
?
Notes: Some drivers should be ready all the time in kernel functionality, without them system can't function like
Unix domain sockets (CONFIG_UNIX)
which should beY
Notes: Its your choice whether you want it or not.
Notes: M means loadable module which they don't need to stay up all the time, Like
Sound Driver
which you can load when you want to play music. It will make your system more efficient.It means it is compiled as a kernel Module.