blob: 1ae164b7f00a625287ee13c80655663ee957730f [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
Dmitry Shmidt8b509382017-07-25 15:10:48 -070011 # Initialize cpusets to boot-time values
12 write /dev/cpuset/foreground/cpus 0-7
Dmitry Shmidt8b509382017-07-25 15:10:48 -070013 write /dev/cpuset/background/cpus 0-7
14 write /dev/cpuset/system-background/cpus 0-7
15 write /dev/cpuset/top-app/cpus 0-7
16
Dmitry Shmidt3dacd442017-08-25 13:54:51 -070017 start watchdogd
18
Vishal Bhoje72c9202015-10-23 18:10:21 +010019on fs
John Stultz531fb4c2018-06-20 16:42:53 -070020 mount_all /vendor/etc/fstab.${ro.hardware}
Vishal Bhoje72c9202015-10-23 18:10:21 +010021 setprop ro.crypto.fuse_sdcard false
22
Vishal Bhoje72c9202015-10-23 18:10:21 +010023on post-fs
Chenbo Feng05aa5592018-09-07 14:23:41 -070024
25 # set RLIMIT_MEMLOCK to 8MB
26 setrlimit 8 8388608 8388608
27
Yongqin Liu05ba0862016-03-23 21:22:57 +080028 # For legacy support
29 # See storage config details at http://source.android.com/tech/storage/
30 # since /storage is mounted on post-fs in init.rc
Yongqin Liu05ba0862016-03-23 21:22:57 +080031 symlink /sdcard /storage/sdcard0
32
Vishal Bhoje72c9202015-10-23 18:10:21 +010033 # BT LED sysfs entry
Dmitry Shmidt883877c2016-09-01 13:49:00 -070034 write /sys/class/leds/bt_active/trigger "hci1rx"
Vishal Bhoje72c9202015-10-23 18:10:21 +010035
36 chmod 0666 /dev/ump
37 chmod 0666 /dev/ion
Vishal Bhoje72c9202015-10-23 18:10:21 +010038 chmod 0666 /dev/graphics/fb0
39
40# fake some battery state
41 setprop status.battery.state Slow
42 setprop status.battery.level 5
43 setprop status.battery.level_raw 50
44 setprop status.battery.level_scale 9
45
Sahaj Sarup18db08a2017-09-09 03:44:32 +053046# If an app forces screen rotation, revert it once the apps closes
47 setprop persist.demo.rotationlock 1
John Stultz6a4721f2016-08-17 17:48:15 -070048
Vishal Bhoje72c9202015-10-23 18:10:21 +010049# enable Google-specific location features,
50# like NetworkLocationProvider and LocationCollector
51 setprop ro.com.google.locationfeatures 1
52
53# enable test harness
54 setprop ro.test_harness true
55
Yongqin Liu8fd6c4f2016-12-19 17:38:31 +080056on post-fs-data
57 mkdir /data/media 0770 media_rw media_rw
58 mkdir /data/misc/gatord 0700 root root
59 # Set SELinux security contexts for files used by lava.
60 restorecon_recursive /data/local/tmp/lava
61
Dmitry Shmidtfe54c482018-01-30 12:49:31 -080062on zygote-start
63 mkdir /data/vendor/wifi 0770 wifi wifi
64 mkdir /data/vendor/wifi/wpa 0770 wifi wifi
65 mkdir /data/vendor/wifi/wpa/sockets 0770 wifi wifi
66
Yongqin Liu8fd6c4f2016-12-19 17:38:31 +080067on property:sys.boot_completed=1
68 # update cpuset now that processors are up
69 # Foreground should contain most cores (7 is reserved for top-app)
70 write /dev/cpuset/foreground/cpus 0-6
71
72 # top-app gets all cpus (including reserved #7)
73 write /dev/cpuset/top-app/cpus 0-7
74
75 #background contains a small subset (generally one little core)
76 write /dev/cpuset/background/cpus 0
77
78 # add system-background cpuset, a new cpuset for system services
79 # that should not run on larger cores
80 # system-background is for system tasks that should only run on
81 # little cores, not on bigs to be used only by init
82 write /dev/cpuset/system-background/cpus 0-3
83
Vishal Bhoje72c9202015-10-23 18:10:21 +010084on property:usb_speed.switch=high
85 write /sys/kernel/debug/f72c0000.usb/config "0"
86
87on property:usb_speed.switch=full
88 write /sys/kernel/debug/f72c0000.usb/config "1"
89
90#userspace daemon needed for bluetooth
Myles Watson34e8b232017-02-15 14:26:09 -080091service uim /vendor/bin/uim
Vishal Bhoje72c9202015-10-23 18:10:21 +010092 class main
Yongqin Liu6c1cf5e2016-06-16 23:33:50 +080093 user bluetooth
Ajay Panickera771b132016-09-20 11:28:28 -070094 group bluetooth net_bt_admin system
Vishal Bhoje72c9202015-10-23 18:10:21 +010095 oneshot
96
Roshan Pius17ea3f32017-02-23 10:17:59 -080097service wpa_supplicant /system/vendor/bin/hw/wpa_supplicant \
Jeff Vander Stoepbf2a8462017-11-30 12:37:46 -080098 -g@android:wpa_wlan0
Roshan Piusc5ef7d22018-02-05 16:45:49 -080099 interface android.hardware.wifi.supplicant@1.0::ISupplicant default
100 interface android.hardware.wifi.supplicant@1.1::ISupplicant default
Vishal Bhoje72c9202015-10-23 18:10:21 +0100101 socket wpa_wlan0 dgram 660 wifi wifi
102 class main
103 disabled
104 oneshot
Dmitry Shmidt3dacd442017-08-25 13:54:51 -0700105
106# Set watchdog timer to 30 seconds and pet it every 10 seconds to get a 20 second margin
Tom Cherry60cc5702018-08-02 12:35:36 -0700107service watchdogd /system/bin/watchdogd 10 20
Dmitry Shmidt3dacd442017-08-25 13:54:51 -0700108 class core
109 oneshot
110 seclabel u:r:watchdogd:s0
Dmitry Shmidt6e5ccc62018-06-11 15:01:46 -0700111
Abhijeet Kaur7603fca2019-08-02 15:41:37 +0100112service bugreport /system/bin/dumpstate -d -p -z
Dmitry Shmidt6e5ccc62018-06-11 15:01:46 -0700113 class main
114 disabled
115 oneshot