Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. service p2p_supplicant /system/bin/wpa_supplicant \
  2. -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
  3. -I/system/etc/wifi/wpa_supplicant_overlay.conf -O/data/misc/wifi/sockets -N \
  4. -ip2p0 -Dnl80211 -c/data/misc/wifi/p2p_supplicant.conf \
  5. -I/system/etc/wifi/p2p_supplicant_overlay.conf \
  6. -puse_p2p_group_interface=1 -puse_multi_chan_concurrent=1 \
  7. -e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
  8. # we will start as root and wpa_supplicant will switch to user wifi
  9. # after setting up the capabilities required for WEXT
  10. # user wifi
  11. # group wifi inet keystore
  12. class main
  13. socket wpa_wlan0 dgram 660 wifi wifi
  14. disabled
  15. oneshot
  16.  
  17. service wpa_supplicant /system/bin/wpa_supplicant -g@android:wpa_wlan0 \
  18. -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf -e/data/misc/wifi/entropy.bin
  19. # we will start as root and wpa_supplicant will switch to user wifi
  20. # after setting up the capabilities required for WEXT
  21. # user wifi
  22. # group wifi inet keystore
  23. class main
  24. socket wpa_wlan0 dgram 660 wifi wifi
  25. disabled
  26. oneshot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement