blob: 9d7652d4c420bfc0c7f933c94b6ffc3e8951328e [file] [log] [blame]
Steve Kondika89711a2010-07-07 09:06:13 -04001# CyanogenMod Extras
2
3# Run scripts in /system/etc/init.d
4 exec /system/xbin/run-parts /system/etc/init.d
5
6# Compcache
7service compcache_on /system/bin/logwrapper /system/bin/sh /system/bin/compcache start
8 disabled
9 oneshot
10
11service compcache_off /system/bin/logwrapper /system/bin/sh /system/bin/compcache stop
12 disabled
13 oneshot
14
15on property:persist.service.compcache=1
16 start compcache_on
17
18on property:persist.service.compcache=0
19 start compcache_off
20
21
22