33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
|
on fs
|
||
|
insmod /system/vendor/modules/rtl_btlpm.ko
|
||
|
setprop wifi.use_customized_macaddr 1
|
||
|
|
||
|
# 1. realtek & eagle wifi service
|
||
|
# 1.1 realtek & eagle wifi sta service
|
||
|
service wpa_supplicant /system/bin/wpa_supplicant \
|
||
|
-iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
|
||
|
-I/system/etc/wifi/wpa_supplicant_overlay.conf \
|
||
|
-O/data/misc/wifi/sockets \
|
||
|
-e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
|
||
|
# we will start as root and wpa_supplicant will switch to user wifi
|
||
|
# after setting up the capabilities required for WEXT
|
||
|
# user wifi
|
||
|
# group wifi inet keystore
|
||
|
class main
|
||
|
socket wpa_wlan0 dgram 660 wifi wifi
|
||
|
disabled
|
||
|
oneshot
|
||
|
|
||
|
# 1.2 realtek & eagle wifi sta p2p concurrent service
|
||
|
service p2p_supplicant /system/bin/wpa_supplicant \
|
||
|
-ip2p0 -Dnl80211 -c/data/misc/wifi/p2p_supplicant.conf \
|
||
|
-e/data/misc/wifi/entropy.bin -N \
|
||
|
-iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
|
||
|
-I/system/etc/wifi/wpa_supplicant_overlay.conf \
|
||
|
-O/data/misc/wifi/sockets \
|
||
|
-g@android:wpa_wlan0
|
||
|
class main
|
||
|
socket wpa_wlan0 dgram 660 wifi wifi
|
||
|
disabled
|
||
|
oneshot
|