Amit Pundir | b027405 | 2023-07-24 12:50:45 +0530 | [diff] [blame] | 1 | on early-init |
| 2 | # start module load in the background |
| 3 | start vendor.dlkm_loader |
Amit Pundir | 94ccdd9 | 2024-02-20 17:50:31 +0530 | [diff] [blame] | 4 | # load "leaf" GKI modules |
| 5 | exec u:r:modprobe:s0 -- /system/bin/modprobe -a -d /system/lib/modules zram.ko |
| 6 | exec u:r:modprobe:s0 -- /system/bin/modprobe -a -d /system/lib/modules hci_uart.ko |
| 7 | # led-class-multicolor.ko as found in android14-5.15 but missing in android13-5.15 |
| 8 | exec u:r:modprobe:s0 -- /system/bin/modprobe -a -d /system/lib/modules led-class-multicolor.ko |
| 9 | # regmap-spmi.ko as found in android13-5.15 but missing in android14-5.15 |
| 10 | exec u:r:modprobe:s0 -- /system/bin/modprobe -a -d /system/lib/modules regmap-spmi.ko |
Amit Pundir | b027405 | 2023-07-24 12:50:45 +0530 | [diff] [blame] | 11 | |
| 12 | service vendor.dlkm_loader /vendor/bin/dlkm_loader |
| 13 | class main |
| 14 | user root |
| 15 | group root system |
| 16 | disabled |
| 17 | oneshot |