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