blob: 41fd8d35044bb2bbf5581a6b79bcc47c3ba85875 [file] [log] [blame]
Amit Pundiraf628c22016-11-02 16:37:00 +08001import init.${ro.hardware}.usb.rc
Leo Yana063cbd2017-05-23 13:03:05 +08002import init.${ro.hardware}.power.rc
Dmitry Shmidtd7114332015-12-10 10:35:59 -08003
Vishal Bhoje72c9202015-10-23 18:10:21 +01004on init
5 # mount debugfs
Dmitry Shmidt57568102017-08-29 15:41:17 -07006 mount debugfs /sys/kernel/debug /sys/kernel/debug mode=755
Vishal Bhoje72c9202015-10-23 18:10:21 +01007
Vishal Bhoje72c9202015-10-23 18:10:21 +01008 # disable transparent huge pages
9 write /sys/kernel/mm/transparent_hugepage/enabled "never"
10
Vishal Bhoje72c9202015-10-23 18:10:21 +010011 # Disabled virtual memory randomization
12 # (if randomization is enabled the AEM-JIT will have a lower cache hit rate)
13 write /proc/sys/kernel/randomize_va_space 0
14
Dmitry Shmidt8b509382017-07-25 15:10:48 -070015 # Initialize cpusets to boot-time values
16 write /dev/cpuset/foreground/cpus 0-7
17 write /dev/cpuset/foreground/boost/cpus 0-7
18 write /dev/cpuset/background/cpus 0-7
19 write /dev/cpuset/system-background/cpus 0-7
20 write /dev/cpuset/top-app/cpus 0-7
21
Dmitry Shmidt3dacd442017-08-25 13:54:51 -070022 start watchdogd
23
Vishal Bhoje72c9202015-10-23 18:10:21 +010024on fs
Amit Pundiraf628c22016-11-02 16:37:00 +080025 mount_all /fstab.${ro.hardware}
Vishal Bhoje72c9202015-10-23 18:10:21 +010026 setprop ro.crypto.fuse_sdcard false
27
Vishal Bhoje72c9202015-10-23 18:10:21 +010028on post-fs
Yongqin Liu05ba0862016-03-23 21:22:57 +080029 # For legacy support
30 # See storage config details at http://source.android.com/tech/storage/
31 # since /storage is mounted on post-fs in init.rc
Yongqin Liu05ba0862016-03-23 21:22:57 +080032 symlink /sdcard /storage/sdcard0
33
Vishal Bhoje72c9202015-10-23 18:10:21 +010034 # BT LED sysfs entry
Dmitry Shmidt883877c2016-09-01 13:49:00 -070035 write /sys/class/leds/bt_active/trigger "hci1rx"
Vishal Bhoje72c9202015-10-23 18:10:21 +010036
37 chmod 0666 /dev/ump
38 chmod 0666 /dev/ion
Vishal Bhoje72c9202015-10-23 18:10:21 +010039 chmod 0666 /dev/graphics/fb0
40
41# fake some battery state
42 setprop status.battery.state Slow
43 setprop status.battery.level 5
44 setprop status.battery.level_raw 50
45 setprop status.battery.level_scale 9
46
47# Set Display density
48 setprop ro.sf.lcd_density 160
49
50# Set supported opengles version
51 setprop ro.opengles.version 196608
52
Sahaj Sarup18db08a2017-09-09 03:44:32 +053053# If an app forces screen rotation, revert it once the apps closes
54 setprop persist.demo.rotationlock 1
John Stultz6a4721f2016-08-17 17:48:15 -070055
Vishal Bhoje72c9202015-10-23 18:10:21 +010056# enable Google-specific location features,
57# like NetworkLocationProvider and LocationCollector
58 setprop ro.com.google.locationfeatures 1
59
60# enable test harness
61 setprop ro.test_harness true
62
Yongqin Liu8fd6c4f2016-12-19 17:38:31 +080063on post-fs-data
64 mkdir /data/media 0770 media_rw media_rw
65 mkdir /data/misc/gatord 0700 root root
66 # Set SELinux security contexts for files used by lava.
67 restorecon_recursive /data/local/tmp/lava
68
69on property:sys.boot_completed=1
70 # update cpuset now that processors are up
71 # Foreground should contain most cores (7 is reserved for top-app)
72 write /dev/cpuset/foreground/cpus 0-6
73
74 # top-app gets all cpus (including reserved #7)
75 write /dev/cpuset/top-app/cpus 0-7
76
77 #background contains a small subset (generally one little core)
78 write /dev/cpuset/background/cpus 0
79
80 # add system-background cpuset, a new cpuset for system services
81 # that should not run on larger cores
82 # system-background is for system tasks that should only run on
83 # little cores, not on bigs to be used only by init
84 write /dev/cpuset/system-background/cpus 0-3
85
Vishal Bhoje72c9202015-10-23 18:10:21 +010086on property:usb_speed.switch=high
87 write /sys/kernel/debug/f72c0000.usb/config "0"
88
89on property:usb_speed.switch=full
90 write /sys/kernel/debug/f72c0000.usb/config "1"
91
92#userspace daemon needed for bluetooth
Myles Watson34e8b232017-02-15 14:26:09 -080093service uim /vendor/bin/uim
Vishal Bhoje72c9202015-10-23 18:10:21 +010094 class main
Yongqin Liu6c1cf5e2016-06-16 23:33:50 +080095 user bluetooth
Ajay Panickera771b132016-09-20 11:28:28 -070096 group bluetooth net_bt_admin system
Vishal Bhoje72c9202015-10-23 18:10:21 +010097 oneshot
98
Roshan Pius17ea3f32017-02-23 10:17:59 -080099service wpa_supplicant /system/vendor/bin/hw/wpa_supplicant \
Vishal Bhoje72c9202015-10-23 18:10:21 +0100100 -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
101 -e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
102 socket wpa_wlan0 dgram 660 wifi wifi
103 class main
104 disabled
105 oneshot
Dmitry Shmidt3dacd442017-08-25 13:54:51 -0700106
107# Set watchdog timer to 30 seconds and pet it every 10 seconds to get a 20 second margin
108service watchdogd /sbin/watchdogd 10 20
109 class core
110 oneshot
111 seclabel u:r:watchdogd:s0