45 lines
No EOL
1.6 KiB
Text
Executable file
45 lines
No EOL
1.6 KiB
Text
Executable file
on fs
|
|
insmod /system/vendor/modules/bcmdhd.ko
|
|
insmod /system/vendor/modules/bcm_btlpm.ko
|
|
|
|
# broadcom wifi service
|
|
# 1 broadcom 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
|
|
|
|
# 2 broadcom wifi sta p2p concurrent service
|
|
service p2p_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 -N \
|
|
-ip2p0 -Dnl80211 -c/data/misc/wifi/p2p_supplicant.conf \
|
|
-I/system/etc/wifi/p2p_supplicant_overlay.conf \
|
|
-puse_p2p_group_interface=1 -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
|
|
|
|
# Run gps service
|
|
#service gps-daemon /system/bin/glgps -c /system/etc/gps/gpsconfig.xml
|
|
# class main
|
|
# socket gps seqpacket 0660 gps system
|
|
# socket rilgps.socket seqpacket 0660 gps system
|
|
# user gps
|
|
# group system inet sdcard_rw |