Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 1 | import init.${ro.hardware}.usb.rc |
| 2 | import init.${ro.hardware}.power.rc |
| 3 | |
| 4 | on fs |
Amit Pundir | 4823247 | 2020-07-05 19:04:17 +0530 | [diff] [blame] | 5 | mount_all /vendor/etc/fstab.${ro.hardware} |
| 6 | swapon_all /vendor/etc/fstab.${ro.hardware} |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 7 | |
Yongqin Liu | 42dec01 | 2020-03-20 13:44:54 +0800 | [diff] [blame] | 8 | on post-fs |
| 9 | # set RLIMIT_MEMLOCK to 64MB |
| 10 | setrlimit 8 67108864 67108864 |
| 11 | |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 12 | on init |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 13 | # Initialize cpusets to boot-time values |
| 14 | write /dev/cpuset/foreground/cpus 0-7 |
| 15 | write /dev/cpuset/background/cpus 0-7 |
| 16 | write /dev/cpuset/system-background/cpus 0-7 |
| 17 | write /dev/cpuset/top-app/cpus 0-7 |
| 18 | |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 19 | on early-boot |
| 20 | mount debugfs debugfs /sys/kernel/debug |
| 21 | chmod 755 /sys/kernel/debug |
| 22 | chmod 755 /sys/kernel/debug/sync |
| 23 | chown graphics graphics /sys/kernel/debug/sync/sw_sync |
| 24 | chmod 777 /sys/kernel/debug/sync/sw_sync |
| 25 | chown graphics graphics /sys/kernel/debug/sync/info |
| 26 | |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 27 | on zygote-start |
| 28 | mkdir /data/vendor/wifi 0770 wifi wifi |
| 29 | mkdir /data/vendor/wifi/wpa 0770 wifi wifi |
| 30 | mkdir /data/vendor/wifi/wpa/sockets 0770 wifi wifi |
| 31 | |
| 32 | on property:sys.boot_completed=1 |
Amit Pundir | d56da2e | 2020-06-21 21:50:34 +0530 | [diff] [blame] | 33 | chmod 0755 /sys/kernel/debug/tracing |
| 34 | |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 35 | # update cpuset now that processors are up |
| 36 | # Foreground should contain most cores (7 is reserved for top-app) |
| 37 | write /dev/cpuset/foreground/cpus 0-6 |
| 38 | |
| 39 | # top-app gets all cpus (including reserved #7) |
| 40 | write /dev/cpuset/top-app/cpus 0-7 |
| 41 | |
| 42 | #background contains a small subset (generally one little core) |
| 43 | write /dev/cpuset/background/cpus 0 |
| 44 | |
| 45 | # add system-background cpuset, a new cpuset for system services |
| 46 | # that should not run on larger cores |
| 47 | # system-background is for system tasks that should only run on |
| 48 | # little cores, not on bigs to be used only by init |
| 49 | write /dev/cpuset/system-background/cpus 0-3 |
| 50 | |
| 51 | service wpa_supplicant /vendor/bin/hw/wpa_supplicant \ |
| 52 | -Dnl80211 -g@android:wpa_wlan0 |
| 53 | interface android.hardware.wifi.supplicant@1.0::ISupplicant default |
| 54 | interface android.hardware.wifi.supplicant@1.1::ISupplicant default |
| 55 | socket wpa_wlan0 dgram 660 wifi wifi |
| 56 | class main |
| 57 | disabled |
| 58 | oneshot |