Getting A List Of Active Drivers On Android
Is there a straightforward way of getting a list of drivers that are currently being used on an Android device? lsmod lists a small number of drivers (3), but I'm guessing that mos
Solution 1:
/proc/config.gz
should tell you the same information that you would find out in make menuconfig
.
adb pull /proc/config.gz .
zcat /proc/config.gz | less
EDIT: Also consider browsing sysfs
for the built-ins:
ls -l /sys/module
Post a Comment for "Getting A List Of Active Drivers On Android"