0

In android device, I am searching command or way to check all kernel modules/drivers in current device. so, can we get all kernel module list from command line ?

Command to list all kernel module/driver for static + run time modules. like lsmod

R_K
  • 803
  • 1
  • 7
  • 18

1 Answers1

0

We can check it through "adb shell ls sys/module/". it will list almost every module inside device static and dynamic.

adb shell ls sys/module/
R_K
  • 803
  • 1
  • 7
  • 18