init.qcom.rc: add wigig supplicant/dhcp services
wigig_supplicant runs separate wpa_supplicant instance for controlling the wigig device. dhcp service used to run on wigig network device. CRs-Fixed: 997373 Change-Id: I842bb5901668cd2f1172b3d3625be4729b62fe3c
This commit is contained in:
parent
f6e95b9419
commit
1a788c89bf
|
@ -688,6 +688,20 @@ service wpa_supplicant /system/bin/wpa_supplicant \
|
|||
disabled
|
||||
oneshot
|
||||
|
||||
service wigig_supplicant /system/bin/wpa_supplicant \
|
||||
-iwigig0 -Dnl80211 -c/data/misc/wifi/wigig_supplicant.conf \
|
||||
-m/data/misc/wifi/wigig_p2p_supplicant.conf \
|
||||
-O/data/misc/wifi/wigig_sockets -dd \
|
||||
-e/data/misc/wifi/wigig_entropy.bin -g@android:wpa_wigig0
|
||||
# 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_wigig0 dgram 660 wifi wifi
|
||||
disabled
|
||||
oneshot
|
||||
|
||||
# FST Manager can be started by property_set("ctl.start", "fstman:<hostap ctrl iface>");
|
||||
service fstman /system/bin/fstman -B -ddd -c /data/misc/wifi/fstman.ini
|
||||
user wifi
|
||||
|
@ -717,6 +731,11 @@ service dhcpcd_p2p /system/bin/dhcpcd -ABKLG
|
|||
disabled
|
||||
oneshot
|
||||
|
||||
service dhcpcd_wigig0 /system/bin/dhcpcd -ABKLG
|
||||
class late_start
|
||||
disabled
|
||||
oneshot
|
||||
|
||||
service iprenew_wlan0 /system/bin/dhcpcd -n
|
||||
class late_start
|
||||
disabled
|
||||
|
@ -732,6 +751,11 @@ service iprenew_p2p /system/bin/dhcpcd -n
|
|||
disabled
|
||||
oneshot
|
||||
|
||||
service iprenew_wigig0 /system/bin/dhcpcd -n
|
||||
class late_start
|
||||
disabled
|
||||
oneshot
|
||||
|
||||
service ptt_socket_app /system/bin/ptt_socket_app -d
|
||||
class main
|
||||
user root
|
||||
|
|
Loading…
Reference in New Issue