init.lynx.rc 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # Lynx specific init.rc
  2. import /vendor/etc/init/hw/init.gs201.rc
  3. on init
  4. # NFC streset tool name
  5. setprop persist.vendor.nfc.streset libstreset21
  6. setprop persist.vendor.se.streset libstreset21
  7. setprop dalvik.vm.dexopt.thermal-cutoff 1
  8. # When ro.build.flavor=factory_lynx-userdebug, add vendor/bin/factory to default path
  9. on init && property:ro.build.flavor=factory_lynx-userdebug
  10. export PATH /product/bin:/apex/com.android.runtime/bin:/apex/com.android.art/bin:/system_ext/bin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin:/vendor/bin/factory
  11. on early-boot
  12. # Wait for insmod_sh to finish all common modules
  13. wait_for_prop vendor.common.modules.ready 1
  14. start insmod_sh_lynx
  15. service insmod_sh_lynx /vendor/bin/init.insmod.sh /vendor/etc/init.insmod.lynx.cfg
  16. class main
  17. user root
  18. group root system
  19. disabled
  20. oneshot
  21. on boot && property:ro.build.flavor=factory_lynx-userdebug
  22. # FTM log folder
  23. mkdir /data/ftmlog 0775 system system
  24. # Audio test folder
  25. mkdir /data/AudioTest 0775 system system
  26. # Start the twoshay touch service
  27. on property:vendor.device.modules.ready=1
  28. start twoshay
  29. on property:vendor.mfgapi.touchpanel.permission=1
  30. chmod 0600 /sys/devices/virtual/sec/tsp/cmd
  31. chown system system /sys/devices/virtual/sec/tsp/cmd
  32. # Fingerprint
  33. on post-fs-data
  34. chown system system /dev/goodix_fp
  35. exec_background - system shell -- /vendor/bin/trusty_apploader /vendor/firmware/g7.app
  36. # SecureElement eSE2 cts mode
  37. on property:persist.vendor.se.ese2.mode=ctsmode
  38. write /sys/class/st33spi/st33spi/st33spi_state 33
  39. # Allow secure_element group to read / write ST33 SPI state
  40. on post-fs-data
  41. chown secure_element secure_element /sys/class/st33spi/st33spi/st33spi_state
  42. chmod 0660 /sys/class/st33spi/st33spi/st33spi_state
  43. # Wifi
  44. on property:sys.boot_completed=1
  45. write /sys/bus/platform/drivers/cnss2/qcom,cnss-qca6490/fs_ready 1
  46. on property:vendor.all.modules.ready=1 && property:vendor.all.devices.ready=1
  47. write /sys/bus/platform/drivers/cnss2/qcom,cnss-qca6490/fs_ready 1
  48. # Create directories for wifihal services
  49. mkdir /dev/socket/wifihal 0770 wifi wifi
  50. chmod 2777 /dev/socket/wifihal
  51. # Create directories for Location services
  52. mkdir /dev/socket/location 0770 wifi wifi
  53. chmod 2777 /dev/socket/location
  54. mkdir /dev/socket/location/mq 0770 wifi wifi
  55. chmod 2777 /dev/socket/location/mq
  56. start vendor.loc_launcher
  57. # Start loc_launcher to launch lowi-server
  58. service vendor.loc_launcher /system/vendor/bin/loc_launcher
  59. class late_start
  60. user wifi
  61. group wifi
  62. disabled
  63. # Start cnss-daemon for CHRE
  64. service vendor.cnss-daemon /vendor/bin/cnss-daemon -n -l
  65. class late_start
  66. user system
  67. group system inet wifi
  68. # Toggle high_sensitivity according to touch_sensitivity_mode
  69. on property:persist.vendor.touch_sensitivity_mode=0 && property:sys.boot_completed=1
  70. write /sys/devices/virtual/goog_touch_interface/gti.0/screen_protector_mode_enabled 0
  71. on property:persist.vendor.touch_sensitivity_mode=1 && property:sys.boot_completed=1
  72. write /sys/devices/virtual/goog_touch_interface/gti.0/screen_protector_mode_enabled 1
  73. # Touch
  74. on property:vendor.device.modules.ready=1
  75. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/force_active
  76. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/fw_ver
  77. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/ms_base
  78. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/ms_diff
  79. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/ms_raw
  80. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/self_test
  81. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/ss_base
  82. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/ss_diff
  83. chown system system /sys/devices/virtual/goog_touch_interface/gti.0/ss_raw
  84. # Override SF and RE uclamps to 0 on boot after being set elsewhere, for adpf cpu hints
  85. on property:sys.boot_completed=1
  86. trigger override-sf-uclamp
  87. on property:vendor.powerhal.init=*
  88. write /dev/cpuset/background/cpus ${persist.device_config.vendor_system_native.background_cpuset:-0-3}
  89. on override-sf-uclamp
  90. write /proc/vendor_sched/rt_uclamp_min 0
  91. write /proc/vendor_sched/sf_uclamp_min 0
  92. # For Japan sku, always enforce camera shutter sound
  93. # Since this property is read by the audio server in system service,
  94. # it should be written by the system init.
  95. on property:ro.boot.hardware.sku=G82U8
  96. setprop audio.camerasound.force true
  97. # Route vibrator.adaptive_haptics.enabled to persist
  98. on property:vibrator.adaptive_haptics.enabled=0
  99. setprop persist.vendor.vibrator.hal.context.enable false
  100. on property:vibrator.adaptive_haptics.enabled=1
  101. setprop persist.vendor.vibrator.hal.context.enable true