blob: 9a26ee13ea90ad111ffff4cae6477e824a2b09ac [file] [log] [blame]
xplodwildb3e27ae2013-10-17 11:06:27 +01001# Omni Extras
Andrew Dodd3fa72fb2013-09-28 12:19:27 -04002
3on init
Andrew Dodd3fa72fb2013-09-28 12:19:27 -04004 export TERMINFO /system/etc/terminfo
5 export TERM linux
6
7on post-fs-data
8 mkdir /cache/dalvik-cache 0771 system system
9 chown system system /cache/dalvik-cache
10 chmod 0771 /cache/dalvik-cache
11 mkdir /data/.ssh 0750 root shell
12
13 # Run sysinit
14 start sysinit
15
16# sysinit (/system/etc/init.d)
17service sysinit /system/bin/sysinit
18 user root
19 oneshot
20 disabled
maxwen32ec8c62013-10-17 20:45:38 +020021
22# adb over network
23on property:service.adb.tcp.port=5555
24 stop adbd
25 start adbd
26on property:service.adb.tcp.port=-1
27 stop adbd
28 start adbd