开发者

Custom wifi driver for android

开发者 https://www.devze.com 2023-03-05 20:32 出处:网络
in android, we can provide Wifi driver either as a m开发者_C百科odule or built in kernel, what is the difference between them. And how to choose them?For the module, you need to manually load it with

in android, we can provide Wifi driver either as a m开发者_C百科odule or built in kernel, what is the difference between them. And how to choose them?


For the module, you need to manually load it with insmod to use it.
Then you can lookup the modules in the system with lsmod.

With it built in the driver, system loads it automatically on system start.

You can choose them when you build the linux kernel in menuconfig. Either you want it built into the kernel or not.

In android the wifi module is loaded into system when you go to the settings and select to turn on wifi. When you select to turn it off, it removes the wifi module by calling a function similar to rmmod.

0

精彩评论

暂无评论...
验证码 换一张
取 消