blob: 286cfae36a90e77ce87b670dc4bca9c2f2dc2c59 [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
Alexander Martinze124f362022-08-17 10:51:02 +020039on post-fs-data
40 # set sys.memfd_use to true now that the ashmem is dropped v5.18
41 # https://lore.kernel.org/all/20220315123457.2354812-1-hch@lst.de/.
42 setprop sys.use_memfd true
43
Amit Pundirc738b812019-06-19 16:13:49 +053044on property:sys.boot_completed=1
Amit Pundird56da2e2020-06-21 21:50:34 +053045 chmod 0755 /sys/kernel/debug/tracing
46
Amit Pundirc738b812019-06-19 16:13:49 +053047 # update cpuset now that processors are up
48 # Foreground should contain most cores (7 is reserved for top-app)
49 write /dev/cpuset/foreground/cpus 0-6
50
51 # top-app gets all cpus (including reserved #7)
52 write /dev/cpuset/top-app/cpus 0-7
53
54 #background contains a small subset (generally one little core)
55 write /dev/cpuset/background/cpus 0
56
57 # add system-background cpuset, a new cpuset for system services
58 # that should not run on larger cores
59 # system-background is for system tasks that should only run on
60 # little cores, not on bigs to be used only by init
61 write /dev/cpuset/system-background/cpus 0-3
62
63service wpa_supplicant /vendor/bin/hw/wpa_supplicant \
64 -Dnl80211 -g@android:wpa_wlan0
Caleb Connolly9f469252022-08-31 11:40:01 +010065 interface aidl android.hardware.wifi.supplicant.ISupplicant/default
Amit Pundirc738b812019-06-19 16:13:49 +053066 interface android.hardware.wifi.supplicant@1.0::ISupplicant default
67 interface android.hardware.wifi.supplicant@1.1::ISupplicant default
68 socket wpa_wlan0 dgram 660 wifi wifi
69 class main
70 disabled
71 oneshot