75 lines
2.4 KiB
Plaintext
75 lines
2.4 KiB
Plaintext
|
# zygote need to be started after otapreopt which will be done on post-fs-data
|
||
|
on zygote-start
|
||
|
|
||
|
# for bluetooth
|
||
|
# bluetooth LPM
|
||
|
chmod 0220 /proc/bluetooth/sleep/lpm
|
||
|
chmod 0220 /proc/bluetooth/sleep/btwrite
|
||
|
chown bluetooth net_bt /proc/bluetooth/sleep/lpm
|
||
|
chown bluetooth net_bt /proc/bluetooth/sleep/btwrite
|
||
|
|
||
|
chmod 0660 /dev/rtk_btusb
|
||
|
chown bluetooth net_bt /dev/rtk_btusb
|
||
|
chmod 0660 /dev/rtkbt_dev
|
||
|
chown bluetooth net_bt /dev/rtkbt_dev
|
||
|
|
||
|
# bluetooth MAC address programming
|
||
|
chown bluetooth net_bt ro.bt.bdaddr_path
|
||
|
setprop ro.bt.bdaddr_path "/data/misc/bluetooth/bdaddr"
|
||
|
|
||
|
chmod 0660 /dev/ttyS0
|
||
|
chmod 0660 /dev/ttyS1
|
||
|
chmod 0660 /dev/ttyS7
|
||
|
chmod 0660 /dev/ttyS8
|
||
|
chmod 0660 /dev/ttyS9
|
||
|
chmod 0660 /dev/vflash
|
||
|
chmod 0664 /dev/vendor_storage
|
||
|
chown bluetooth net_bt /dev/vflash
|
||
|
chown bluetooth net_bt /dev/vendor_storage
|
||
|
chown bluetooth net_bt /dev/ttyS0
|
||
|
chown bluetooth net_bt /dev/ttyS1
|
||
|
chown bluetooth net_bt /dev/ttyS7
|
||
|
chown bluetooth net_bt /dev/ttyS8
|
||
|
chown bluetooth net_bt /dev/ttyS9
|
||
|
chown bluetooth net_bt /sys/class/rfkill/rfkill0/type
|
||
|
chown bluetooth net_bt /sys/class/rfkill/rfkill0/state
|
||
|
chmod 0664 /sys/class/rfkill/rfkill0/state
|
||
|
|
||
|
# for wifi
|
||
|
|
||
|
mkdir /data/vendor/wifi 0771 wifi wifi
|
||
|
mkdir /data/vendor/wifi/wpa 0770 wifi wifi
|
||
|
mkdir /data/vendor/wifi/wpa/sockets 0770 wifi wifi
|
||
|
export TMP /data/local/tmp
|
||
|
|
||
|
chown wifi wifi /sys/module/bcmdhd/parameters/firmware_path
|
||
|
|
||
|
#for nfc
|
||
|
chmod 0660 /dev/bcm2079x
|
||
|
chown nfc nfc /dev/bcm2079x
|
||
|
mkdir /data/nfc 0700 nfc nfc encryption=Require
|
||
|
mkdir /data/nfc/param 0700 nfc nfc encryption=Require
|
||
|
|
||
|
on property:wlan.driver.status=ok
|
||
|
chown wifi wifi /sys/module/bcmdhd/parameters/firmware_path
|
||
|
chown wifi wifi /sys/module/bcmdhd/parameters/nvram_path
|
||
|
|
||
|
on property:vendor.wifi.direct.interface=p2p0
|
||
|
setprop wifi.direct.interface p2p0
|
||
|
|
||
|
on property:vendor.wifi.direct.interface=p2p-dev-wlan0
|
||
|
setprop wifi.direct.interface p2p-dev-wlan0
|
||
|
|
||
|
service wpa_supplicant /vendor/bin/hw/wpa_supplicant \
|
||
|
/vendor/etc/wifi/wpa_config.txt
|
||
|
# 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
|
||
|
interface aidl android.hardware.wifi.supplicant.ISupplicant/default
|
||
|
class main
|
||
|
socket wpa_wlan0 dgram 660 wifi wifi
|
||
|
disabled
|
||
|
oneshot
|
||
|
|