diff options
author | Steve Kondik <shade@chemlab.org> | 2010-08-20 13:17:37 -0400 |
---|---|---|
committer | Steve Kondik <shade@chemlab.org> | 2010-08-20 13:17:37 -0400 |
commit | fe18fc31a6046fdb90dc97ca0ed4075bf198f32e (patch) | |
tree | 1c16d253b5c1f663ee4aeb987986c8b17669cf22 /prebuilt/common | |
parent | e4b633ee0730555b0052b5f51ba6e3c5b748c14d (diff) | |
download | vendor_replicant-fe18fc31a6046fdb90dc97ca0ed4075bf198f32e.zip vendor_replicant-fe18fc31a6046fdb90dc97ca0ed4075bf198f32e.tar.gz vendor_replicant-fe18fc31a6046fdb90dc97ca0ed4075bf198f32e.tar.bz2 |
cm: Fix compcache startup
Can't run a script on /system in "on boot" because /system isn't
mounted yet.
Diffstat (limited to 'prebuilt/common')
-rw-r--r-- | prebuilt/common/etc/init.local.rc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/prebuilt/common/etc/init.local.rc b/prebuilt/common/etc/init.local.rc index f113f1d..de5a512 100644 --- a/prebuilt/common/etc/init.local.rc +++ b/prebuilt/common/etc/init.local.rc @@ -1,5 +1,7 @@ # CyanogenMod Extras -on boot - # Compcache - exec /system/bin/handle_compcache +# Compcache - handle at boot +service compcache /system/bin/handle_compcache + user root + group root + oneshot |