How to find all available modules on system
- Find those loaded module
- Use command "lsmod"
- Find a specific module name and its usage
- Check this website: LKDDb: Linux Kernel Driver DataBase
- e.g., phy_mxs_usb
- Find all modules which can be used
- cd /lib/modules/
- "uname -r"
- To check Linux kernel release
- cd 4.9.11-myimx6-g7c9eb82-dirty/
- Pick this kernel to check all available modules
- find . -name *.ko
- To list all available modules
- Reference