Steve Kondik | a89711a | 2010-07-07 09:06:13 -0400 | [diff] [blame] | 1 | # CyanogenMod Extras |
Koushik Dutta | 5af62eb | 2013-07-27 19:52:40 -0700 | [diff] [blame] | 2 | import /init.superuser.rc |
Steve Kondik | a89711a | 2010-07-07 09:06:13 -0400 | [diff] [blame] | 3 | |
Ricardo Cerqueira | 8f412cb | 2012-10-18 16:38:25 +0100 | [diff] [blame] | 4 | on init |
| 5 | export ANDROID_CACHE /cache |
| 6 | export TERMINFO /system/etc/terminfo |
| 7 | export TERM linux |
| 8 | |
| 9 | on post-fs-data |
| 10 | mkdir /cache/dalvik-cache 0771 system system |
| 11 | chown system system /cache/dalvik-cache |
| 12 | chmod 0771 /cache/dalvik-cache |
Chirayu Desai | ce88540 | 2013-05-12 16:28:01 +0530 | [diff] [blame] | 13 | mkdir /data/.ssh 0750 root shell |
Ricardo Cerqueira | 8f412cb | 2012-10-18 16:38:25 +0100 | [diff] [blame] | 14 | |
Ricardo Cerqueira | 6698e5e | 2012-11-23 17:15:16 +0000 | [diff] [blame] | 15 | # Run sysinit |
| 16 | start sysinit |
| 17 | |
Ricardo Cerqueira | 79ba997 | 2013-06-12 12:12:18 +0100 | [diff] [blame] | 18 | on boot |
Giulio Cervera | a76d898 | 2013-05-21 14:23:19 +0200 | [diff] [blame] | 19 | # interactive governor |
| 20 | chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_rate |
| 21 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_rate |
| 22 | chown system system /sys/devices/system/cpu/cpufreq/interactive/min_sample_time |
| 23 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/min_sample_time |
| 24 | chown system system /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq |
| 25 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq |
| 26 | chown system system /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load |
| 27 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load |
| 28 | chown system system /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay |
| 29 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay |
| 30 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boost |
| 31 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boost |
| 32 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse |
| 33 | chown system system /sys/devices/system/cpu/cpufreq/interactive/input_boost |
| 34 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/input_boost |
| 35 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration |
| 36 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration |
Giulio Cervera | 989a313 | 2013-07-12 17:44:16 +0200 | [diff] [blame] | 37 | chown system system /sys/devices/system/cpu/cpufreq/interactive/io_is_busy |
| 38 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/io_is_busy |
Giulio Cervera | a76d898 | 2013-05-21 14:23:19 +0200 | [diff] [blame] | 39 | |
| 40 | # ondemand governor |
| 41 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/boostfreq |
| 42 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/boostfreq |
| 43 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/boostpulse |
| 44 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/boostpulse |
| 45 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/boosttime |
| 46 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate |
| 47 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/io_is_busy |
| 48 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/io_is_busy |
| 49 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/down_differential |
| 50 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/down_differential |
| 51 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate |
| 52 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate |
| 53 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/powersave_bias |
| 54 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/powersave_bias |
| 55 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor |
| 56 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor |
| 57 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/up_threshold |
| 58 | chmod 0660 /sys/devices/system/cpu/cpufreq/ondemand/up_threshold |
Steve Kondik | 686cbf2 | 2013-10-04 04:31:56 -0700 | [diff] [blame^] | 59 | chown system system /sys/devices/system/cpu/cpufreq/ondemand/input_boost |
| 60 | chmod 0600 /sys/devices/system/cpu/cpufreq/ondemand/input_boost |
Giulio Cervera | a76d898 | 2013-05-21 14:23:19 +0200 | [diff] [blame] | 61 | |
| 62 | # Assume SMP uses shared cpufreq policy for all CPUs |
| 63 | chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor |
| 64 | chmod 0664 /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor |
| 65 | chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq |
| 66 | chmod 0664 /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq |
| 67 | chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq |
| 68 | chmod 0664 /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq |
| 69 | |
Ricardo Cerqueira | 8f412cb | 2012-10-18 16:38:25 +0100 | [diff] [blame] | 70 | chown system system /sys/block/mmcblk0/queue/scheduler |
| 71 | chmod 0664 /sys/block/mmcblk0/queue/scheduler |
| 72 | |
| 73 | # allow system to modify ksm control files |
| 74 | chown root system /sys/kernel/mm/ksm/pages_to_scan |
| 75 | chmod 0664 /sys/kernel/mm/ksm/pages_to_scan |
| 76 | chown root system /sys/kernel/mm/ksm/sleep_millisecs |
| 77 | chmod 0664 /sys/kernel/mm/ksm/sleep_millisecs |
| 78 | chown root system /sys/kernel/mm/ksm/run |
| 79 | chmod 0664 /sys/kernel/mm/ksm/run |
| 80 | write /sys/kernel/mm/ksm/sleep_millisecs 1500 |
| 81 | write /sys/kernel/mm/ksm/pages_to_scan 256 |
| 82 | |
NameLess, the Jedi | ff4b205 | 2010-12-31 10:00:10 +0100 | [diff] [blame] | 83 | # allow system to modify cpufreq control files |
| 84 | chown root system /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor |
| 85 | chmod 0664 /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor |
| 86 | chown root system /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq |
| 87 | chmod 0664 /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq |
| 88 | chown root system /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq |
| 89 | chmod 0664 /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq |
| 90 | |
Steve Kondik | 6a0f530 | 2013-10-02 11:28:28 -0700 | [diff] [blame] | 91 | chown system system /dev/cpuctl/apps/cpu.notify_on_migrate |
| 92 | chmod 0644 /dev/cpuctl/apps/cpu.notify_on_migrate |
| 93 | |
Ricardo Cerqueira | 8f412cb | 2012-10-18 16:38:25 +0100 | [diff] [blame] | 94 | # adb over network |
| 95 | on property:service.adb.tcp.port=5555 |
| 96 | stop adbd |
| 97 | start adbd |
| 98 | on property:service.adb.tcp.port=-1 |
| 99 | stop adbd |
| 100 | start adbd |
| 101 | |
Steve Kondik | fe18fc3 | 2010-08-20 13:17:37 -0400 | [diff] [blame] | 102 | # Compcache - handle at boot |
| 103 | service compcache /system/bin/handle_compcache |
Ricardo Cerqueira | 8f412cb | 2012-10-18 16:38:25 +0100 | [diff] [blame] | 104 | class main |
Steve Kondik | fe18fc3 | 2010-08-20 13:17:37 -0400 | [diff] [blame] | 105 | user root |
| 106 | group root |
| 107 | oneshot |
Ricardo Cerqueira | 6698e5e | 2012-11-23 17:15:16 +0000 | [diff] [blame] | 108 | |
| 109 | # sysinit (/system/etc/init.d) |
| 110 | service sysinit /system/bin/sysinit |
| 111 | user root |
| 112 | oneshot |
Ricardo Cerqueira | 79ba997 | 2013-06-12 12:12:18 +0100 | [diff] [blame] | 113 | disabled |