8f412cb14a
The "import" keyword is only parsed once, for a one shot execution, during the initial section setup, and before running "on fs". Having an import of a file that's located in a filesystem other than root will result in an error like <3> init: could not import file '/system/etc/init.local.rc' from '/init.rc' So... any files imported into init need to be moved to the root fs. While we're at it, move init.rc changes that are specific to CM (and don't involve modification of preexisting configs) into this file, to ease future upstream merges (and minimize breakage on devices that override init.rc with their own variants) Needs to be paired with the corresponding system/core patch Change-Id: Iab6340db2e28ef19dbcd84ae5c71737ce0cd491f
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# CyanogenMod Extras
|
|
|
|
on init
|
|
export ANDROID_CACHE /cache
|
|
export TERMINFO /system/etc/terminfo
|
|
export TERM linux
|
|
|
|
on post-fs-data
|
|
mkdir /cache/dalvik-cache 0771 system system
|
|
chown system system /cache/dalvik-cache
|
|
chmod 0771 /cache/dalvik-cache
|
|
|
|
on boot
|
|
chown system system /sys/block/mmcblk0/queue/scheduler
|
|
chmod 0664 /sys/block/mmcblk0/queue/scheduler
|
|
|
|
# allow system to modify ksm control files
|
|
chown root system /sys/kernel/mm/ksm/pages_to_scan
|
|
chmod 0664 /sys/kernel/mm/ksm/pages_to_scan
|
|
chown root system /sys/kernel/mm/ksm/sleep_millisecs
|
|
chmod 0664 /sys/kernel/mm/ksm/sleep_millisecs
|
|
chown root system /sys/kernel/mm/ksm/run
|
|
chmod 0664 /sys/kernel/mm/ksm/run
|
|
write /sys/kernel/mm/ksm/sleep_millisecs 1500
|
|
write /sys/kernel/mm/ksm/pages_to_scan 256
|
|
|
|
# adb over network
|
|
on property:service.adb.tcp.port=5555
|
|
stop adbd
|
|
start adbd
|
|
on property:service.adb.tcp.port=-1
|
|
stop adbd
|
|
start adbd
|
|
|
|
# Compcache - handle at boot
|
|
service compcache /system/bin/handle_compcache
|
|
class main
|
|
user root
|
|
group root
|
|
oneshot
|