• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1on early-init
2    device mtd@misc 0460 radio diag
3
4on boot
5# unmap left alt to avoid console switch
6    setkey 0x0 0x38 0x0
7# dream reset SEND+MENU+END
8    setkey 0x0 0xe7 0x706
9    setkey 0x0 0x8b 0x707
10
11    setkey 0x40 0xe7 0x706
12    setkey 0x40 0x8b 0x707
13
14    setkey 0x80 0xe7 0x706
15    setkey 0x80 0x8b 0x707
16
17    setkey 0xc0 0xe7 0x706
18    setkey 0xc0 0x8b 0x707
19    setkey 0xc0 0x6b 0x20c
20
21    mkdir /data/misc/wifi 0770 wifi wifi
22    mkdir /data/misc/wifi/sockets 0770 wifi wifi
23    mkdir /data/misc/dhcp 0770 dhcp dhcp
24    chown dhcp dhcp /data/misc/dhcp
25
26    # bluetooth power up/down interface
27    chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
28    chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
29    chmod 0660                /sys/class/rfkill/rfkill0/state
30
31on property:init.svc.wpa_supplicant=stopped
32    stop dhcpcd
33
34# compass/accelerometer daemon
35service akmd /system/bin/akmd
36    user compass
37    group compass misc input
38
39service wlan_loader /system/bin/wlan_loader \
40    -f /system/etc/wifi/Fw1251r1c.bin -e /proc/calibration \
41    -i /system/etc/wifi/tiwlan.ini
42    disabled
43    oneshot
44
45service wpa_supplicant /system/bin/wpa_supplicant \
46    -Dtiwlan0 -itiwlan0 -c/data/misc/wifi/wpa_supplicant.conf
47    user wifi
48    group wifi inet
49    socket wpa_tiwlan0 dgram 660 wifi wifi
50    disabled
51    oneshot
52
53# for the moment, while debugging dhcpcd, logwrapper is
54# used to get its output to appear in the logs. This will
55# be removed before shipping.
56service dhcpcd /system/bin/logwrapper dhcpcd -d tiwlan0
57    disabled
58    oneshot
59
60service hciattach /system/bin/hciattach \
61    -n -s 115200 /dev/ttyHS0 texas 4000000 flow
62    user bluetooth
63    group bluetooth net_bt_admin
64    disabled
65