blob: b49fe945a2d4a7681a35d45aa3b0751e434136af [file] [log] [blame]
Amit Pundirc738b812019-06-19 16:13:49 +05301import init.${ro.hardware}.usb.rc
2import init.${ro.hardware}.power.rc
3
4on fs
Amit Pundir48232472020-07-05 19:04:17 +05305 mount_all /vendor/etc/fstab.${ro.hardware}
6 swapon_all /vendor/etc/fstab.${ro.hardware}
Amit Pundirc738b812019-06-19 16:13:49 +05307
Yongqin Liu42dec012020-03-20 13:44:54 +08008on post-fs
9 # set RLIMIT_MEMLOCK to 64MB
10 setrlimit 8 67108864 67108864
11
Caleb Connolly62fd5a42022-01-24 16:00:04 +000012 # make sure remoteprocs have booted, some will attempt
13 # to start before firmware is available and not automatically
14 # retry.
15 write /sys/class/remoteproc/remoteproc0/state start
16 write /sys/class/remoteproc/remoteproc1/state start
17 write /sys/class/remoteproc/remoteproc2/state start
18
Amit Pundirc738b812019-06-19 16:13:49 +053019on init
Amit Pundirc738b812019-06-19 16:13:49 +053020 # Initialize cpusets to boot-time values
21 write /dev/cpuset/foreground/cpus 0-7
22 write /dev/cpuset/background/cpus 0-7
23 write /dev/cpuset/system-background/cpus 0-7
24 write /dev/cpuset/top-app/cpus 0-7
25
Amit Pundirc738b812019-06-19 16:13:49 +053026on early-boot
27 mount debugfs debugfs /sys/kernel/debug
28 chmod 755 /sys/kernel/debug
29 chmod 755 /sys/kernel/debug/sync
30 chown graphics graphics /sys/kernel/debug/sync/sw_sync
31 chmod 777 /sys/kernel/debug/sync/sw_sync
32 chown graphics graphics /sys/kernel/debug/sync/info
33
Amit Pundirc738b812019-06-19 16:13:49 +053034on zygote-start
35 mkdir /data/vendor/wifi 0770 wifi wifi
36 mkdir /data/vendor/wifi/wpa 0770 wifi wifi
37 mkdir /data/vendor/wifi/wpa/sockets 0770 wifi wifi
38
39on property:sys.boot_completed=1
Amit Pundird56da2e2020-06-21 21:50:34 +053040 chmod 0755 /sys/kernel/debug/tracing
41
Amit Pundirc738b812019-06-19 16:13:49 +053042 # update cpuset now that processors are up
43 # Foreground should contain most cores (7 is reserved for top-app)
44 write /dev/cpuset/foreground/cpus 0-6
45
46 # top-app gets all cpus (including reserved #7)
47 write /dev/cpuset/top-app/cpus 0-7
48
49 #background contains a small subset (generally one little core)
50 write /dev/cpuset/background/cpus 0
51
52 # add system-background cpuset, a new cpuset for system services
53 # that should not run on larger cores
54 # system-background is for system tasks that should only run on
55 # little cores, not on bigs to be used only by init
56 write /dev/cpuset/system-background/cpus 0-3
57
58service wpa_supplicant /vendor/bin/hw/wpa_supplicant \
59 -Dnl80211 -g@android:wpa_wlan0
60 interface android.hardware.wifi.supplicant@1.0::ISupplicant default
61 interface android.hardware.wifi.supplicant@1.1::ISupplicant default
62 socket wpa_wlan0 dgram 660 wifi wifi
63 class main
64 disabled
65 oneshot