graffixnyc

steves

Mar 21st, 2011
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.73 KB | None | 0 0
  1.  
  2.  
  3. on init
  4.  
  5. sysclktz 0
  6.  
  7. loglevel 3
  8.  
  9. # setup the global environment
  10. export PATH /sbin:/system/sbin:/system/bin:/system/xbin
  11. export LD_LIBRARY_PATH /system/lib
  12. export ANDROID_BOOTLOGO 1
  13. export ANDROID_ROOT /system
  14. export ANDROID_ASSETS /system/app
  15. export ANDROID_DATA /data
  16. export EXTERNAL_STORAGE /mnt/sdcard
  17. # WH Lee
  18. export REMOVABLE_STORAGE /mnt/sdcard/sdcard2
  19. export ASEC_MOUNTPOINT /mnt/asec
  20. export BOOTCLASSPATH /system/framework/core.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/kafdex.jar:/system/framework/com.nvidia.graphics.jar
  21.  
  22. # Backward compatibility
  23. # Menghan Cheng, 20100728, for huawei ril pppd
  24. symlink /data/var /var
  25. symlink /system/etc /etc
  26. symlink /sys/kernel/debug /d
  27. symlink /dev/block/mmcblk3p12 /dev/general_setting
  28. symlink /dev/block/mmcblk3p15 /dev/fa
  29. symlink /dev/block/mmcblk3p16 /dev/otp
  30.  
  31. # create mountpoints
  32. mkdir /mnt 0775 root system
  33. mkdir /mnt/sdcard 0000 system system
  34.  
  35. # Create cgroup mount point for cpu accounting
  36. mkdir /acct
  37. mount cgroup none /acct cpuacct
  38. mkdir /acct/uid
  39.  
  40. # Backwards Compat - XXX: Going away in G*
  41. symlink /mnt/sdcard /sdcard
  42.  
  43. mkdir /system
  44. mkdir /data 0771 system system
  45. mkdir /cache 0770 system cache
  46. mkdir /misc 0770 system misc
  47. mkdir /config 0500 root root
  48.  
  49. # Directory for putting things only root should see.
  50. mkdir /mnt/secure 0700 root root
  51.  
  52. # Directory for staging bindmounts
  53. mkdir /mnt/secure/staging 0700 root root
  54.  
  55. # WH Lee
  56. mkdir /mnt/secure/staging2 0700 root root
  57.  
  58. # Directory-target for where the secure container
  59. # imagefile directory will be bind-mounted
  60. mkdir /mnt/secure/asec 0700 root root
  61.  
  62. # WH Lee
  63. mkdir /mnt/secure/asec2 0700 root root
  64.  
  65. # Secure container public mount points.
  66. mkdir /mnt/asec 0700 root system
  67. mount tmpfs tmpfs /mnt/asec mode=0755,gid=1000
  68.  
  69. mount rootfs rootfs / ro remount
  70.  
  71. write /proc/sys/kernel/panic_on_oops 1
  72. write /proc/sys/kernel/hung_task_timeout_secs 0
  73. write /proc/cpu/alignment 4
  74. write /proc/sys/kernel/sched_latency_ns 10000000
  75. write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000
  76. write /proc/sys/kernel/sched_compat_yield 1
  77. write /proc/sys/kernel/sched_child_runs_first 0
  78.  
  79. # Create cgroup mount points for process groups
  80. mkdir /dev/cpuctl
  81. mount cgroup none /dev/cpuctl cpu
  82. chown system system /dev/cpuctl
  83. chown system system /dev/cpuctl/tasks
  84. chmod 0777 /dev/cpuctl/tasks
  85. write /dev/cpuctl/cpu.shares 1024
  86.  
  87. mkdir /dev/cpuctl/fg_boost
  88. chown system system /dev/cpuctl/fg_boost/tasks
  89. chmod 0777 /dev/cpuctl/fg_boost/tasks
  90. write /dev/cpuctl/fg_boost/cpu.shares 1024
  91.  
  92. mkdir /dev/cpuctl/bg_non_interactive
  93. chown system system /dev/cpuctl/bg_non_interactive/tasks
  94. chmod 0777 /dev/cpuctl/bg_non_interactive/tasks
  95. # 5.0 %
  96. write /dev/cpuctl/bg_non_interactive/cpu.shares 52
  97.  
  98. chown root system /dev/block/mmcblk3p12
  99. chmod 0664 /dev/block/mmcblk3p12
  100. chown root system /dev/block/mmcblk3p15
  101. chmod 0664 /dev/block/mmcblk3p15
  102. chmod 0777 /dev/hdst0
  103.  
  104. # workaround for enter-recovery in system permission
  105. chmod 0444 /proc/cmdline
  106. chown root system /dev/block/mmcblk3p5
  107. chmod 0664 /dev/block/mmcblk3p5
  108.  
  109. # mount mtd partitions
  110. # Mount /system rw first to give the filesystem a chance to save a checkpoint
  111.  
  112. mount ext2 /dev/block/mmcblk3p3 /system noatime nodiratime
  113.  
  114. # We chown/chmod /data again so because mount is run as root + defaults
  115.  
  116. mount ext3 /dev/block/mmcblk3p7 /data nosuid nodev nodiratime commit=9999 noatime
  117. chown system system /data
  118. chmod 0771 /data
  119.  
  120. # Create dump dir and collect dumps.
  121. # Do this before we mount cache so eventually we can use cache for
  122. # storing dumps on platforms which do not have a dedicated dump partition.
  123.  
  124. mkdir /data/dontpanic
  125. chown root log /data/dontpanic
  126. chmod 0750 /data/dontpanic
  127.  
  128. # Collect apanic data, free resources and re-arm trigger
  129. copy /proc/apanic_console /data/dontpanic/apanic_console
  130. chown root log /data/dontpanic/apanic_console
  131. chmod 0640 /data/dontpanic/apanic_console
  132.  
  133. copy /proc/apanic_threads /data/dontpanic/apanic_threads
  134. chown root log /data/dontpanic/apanic_threads
  135. chmod 0640 /data/dontpanic/apanic_threads
  136.  
  137. write /proc/apanic_console 1
  138.  
  139. # Same reason as /data above
  140.  
  141. mount ext3 /dev/block/mmcblk3p4 /cache nosuid nodev noatime
  142. chown system cache /cache
  143. chmod 0770 /cache
  144.  
  145.  
  146. mount ext3 /dev/block/mmcblk3p5 /misc nosuid nodev noatime
  147. chown system misc /misc
  148. chmod 0770 /misc
  149.  
  150. # This may have been created by the recovery system with odd permissions
  151. chown system cache /cache/recovery
  152. chmod 0770 /cache/recovery
  153.  
  154. #change permissions on vmallocinfo so we can grab it from bugreports
  155. chown root log /proc/vmallocinfo
  156. chmod 0440 /proc/vmallocinfo
  157.  
  158. #change permissions on kmsg & sysrq-trigger so bugreports can grab kthread stacks
  159. chown root system /proc/kmsg
  160. chmod 0440 /proc/kmsg
  161. chown root system /proc/sysrq-trigger
  162. chmod 0220 /proc/sysrq-trigger
  163.  
  164. # create basic filesystem structure
  165. mkdir /data/misc 01771 system misc
  166. mkdir /data/misc/bluetoothd 0770 bluetooth bluetooth
  167. mkdir /data/misc/bluetooth 0770 system system
  168. mkdir /data/misc/keystore 0700 keystore keystore
  169. mkdir /data/misc/vpn 0770 system system
  170. mkdir /data/misc/systemkeys 0700 system system
  171. mkdir /data/misc/vpn/profiles 0770 system system
  172. # give system access to wpa_supplicant.conf for backup and restore
  173. mkdir /data/misc/wifi 0770 wifi wifi
  174. chmod 0770 /data/misc/wifi
  175. chmod 0660 /data/misc/wifi/wpa_supplicant.conf
  176. mkdir /data/local 0771 shell shell
  177. mkdir /data/local/tmp 0771 shell shell
  178. mkdir /data/data 0771 system system
  179. mkdir /data/app-private 0771 system system
  180. mkdir /data/app 0771 system system
  181. mkdir /data/property 0700 root root
  182.  
  183. # create dalvik-cache and double-check the perms
  184. mkdir /data/dalvik-cache 0771 system system
  185. chown system system /data/dalvik-cache
  186. chmod 0771 /data/dalvik-cache
  187.  
  188. # create the lost+found directories, so as to enforce our permissions
  189. mkdir /data/lost+found 0770
  190. mkdir /cache/lost+found 0770
  191.  
  192. # double check the perms, in case lost+found already exists, and set owner
  193. chown root root /data/lost+found
  194. chmod 0770 /data/lost+found
  195. chown root root /cache/lost+found
  196. chmod 0770 /cache/lost+found
  197.  
  198. # DRM
  199. mkdir /data/misc/drm 0777 system system
  200. chmod 0777 /data/misc/drm
  201. symlink /data/misc/drm /system/etc/security/drm
  202.  
  203. # GPS
  204. mkdir /data/gps 0770 system system
  205.  
  206. on boot
  207. # basic network init
  208. ifup lo
  209. hostname localhost
  210. domainname localdomain
  211.  
  212. # set RLIMIT_NICE to allow priorities from 19 to -20
  213. setrlimit 13 40 40
  214.  
  215. # Define the oom_adj values for the classes of processes that can be
  216. # killed by the kernel. These are used in ActivityManagerService.
  217. setprop ro.FOREGROUND_APP_ADJ 0
  218. setprop ro.VISIBLE_APP_ADJ 1
  219. setprop ro.SECONDARY_SERVER_ADJ 2
  220. setprop ro.BACKUP_APP_ADJ 2
  221. setprop ro.HOME_APP_ADJ 4
  222. setprop ro.HIDDEN_APP_MIN_ADJ 7
  223. setprop ro.CONTENT_PROVIDER_ADJ 14
  224. setprop ro.EMPTY_APP_ADJ 15
  225.  
  226. # Define the memory thresholds at which the above process classes will
  227. # be killed. These numbers are in pages (4k).
  228. setprop ro.FOREGROUND_APP_MEM 4096
  229. setprop ro.VISIBLE_APP_MEM 5120
  230. setprop ro.SECONDARY_SERVER_MEM 6144
  231. setprop ro.BACKUP_APP_MEM 5120
  232. setprop ro.HOME_APP_MEM 8192
  233. setprop ro.HIDDEN_APP_MEM 6144
  234. setprop ro.CONTENT_PROVIDER_MEM 10240
  235. setprop ro.EMPTY_APP_MEM 4096
  236.  
  237. # Write value must be consistent with the above properties.
  238. # Note that the driver only supports 6 slots, so we have HOME_APP at the
  239. # same memory level as services.
  240. write /sys/module/lowmemorykiller/parameters/adj 0,1,2,7,14,15
  241.  
  242. write /proc/sys/vm/overcommit_memory 1
  243. write /proc/sys/vm/min_free_order_shift 4
  244. write /sys/module/lowmemorykiller/parameters/minfree 4096,5120,6144,5120,8192,6144,10240,4096
  245.  
  246. # Set init its forked children's oom_adj.
  247. write /proc/1/oom_adj -16
  248.  
  249. # Tweak background writeout
  250. write /proc/sys/vm/dirty_expire_centisecs 200
  251. write /proc/sys/vm/dirty_background_ratio 5
  252.  
  253. # Permissions for System Server and daemons.
  254. chown radio system /sys/android_power/state
  255. chown radio system /sys/android_power/request_state
  256. chown radio system /sys/android_power/acquire_full_wake_lock
  257. chown radio system /sys/android_power/acquire_partial_wake_lock
  258. chown radio system /sys/android_power/release_wake_lock
  259. chown radio system /sys/power/state
  260. chown radio system /sys/power/wake_lock
  261. chown radio system /sys/power/wake_unlock
  262. chmod 0660 /sys/power/state
  263. chmod 0660 /sys/power/wake_lock
  264. chmod 0660 /sys/power/wake_unlock
  265. chmod 0644 /dev/block/mmcblk3p10
  266. chmod 0644 /dev/bt_mac
  267. # Eric Liu+
  268. chown system system /sys/class/timed_output/vibrator/enable
  269. chown system system /sys/class/leds/keyboard-backlight/brightness
  270. chown system system /sys/class/leds/lcd-backlight/brightness
  271. chown system system /sys/class/leds/button-backlight/brightness
  272. chown system system /sys/devices/virtual/misc/lsensor_taos/ctrl
  273. chown system system /dev/camera_daemon
  274. chmod 666 /dev/camera_daemon
  275. # chown system system /sys/class/leds/jogball-backlight/brightness
  276. chown system system /sys/class/leds/red/brightness
  277. chown system system /sys/class/leds/green/brightness
  278. chown system system /sys/class/leds/blue/brightness
  279. chown system system /sys/class/leds/red/device/grpfreq
  280. chown system system /sys/class/leds/red/device/grppwm
  281. chown system system /sys/class/leds/red/device/blink
  282. chown system system /sys/class/leds/red/brightness
  283. chown system system /sys/class/leds/green/brightness
  284. chown system system /sys/class/leds/blue/brightness
  285. chown system system /sys/class/leds/red/device/grpfreq
  286. chown system system /sys/class/leds/red/device/grppwm
  287. chown system system /sys/class/leds/red/device/blink
  288. # Eric Liu-
  289.  
  290. chown system system /sys/module/sco/parameters/disable_esco
  291. chown system system /sys/kernel/ipv4/tcp_wmem_min
  292. chown system system /sys/kernel/ipv4/tcp_wmem_def
  293. chown system system /sys/kernel/ipv4/tcp_wmem_max
  294. chown system system /sys/kernel/ipv4/tcp_rmem_min
  295. chown system system /sys/kernel/ipv4/tcp_rmem_def
  296. chown system system /sys/kernel/ipv4/tcp_rmem_max
  297. chown bluetooth bluetooth /dev/bt_mac
  298. chown root radio /proc/cmdline
  299.  
  300. # Define TCP buffer sizes for various networks
  301. # ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,
  302. setprop net.tcp.buffersize.default 4096,87380,110208,4096,16384,110208
  303. setprop net.tcp.buffersize.wifi 4095,87380,110208,4096,16384,110208
  304. setprop net.tcp.buffersize.umts 4094,87380,110208,4096,16384,110208
  305. setprop net.tcp.buffersize.edge 4093,26280,35040,4096,16384,35040
  306. setprop net.tcp.buffersize.gprs 4092,8760,11680,4096,8760,11680
  307.  
  308. # DRM engine lib
  309. setprop persist.tegra.drmlib.asfdrm libwmdrm.so
  310.  
  311. # WH Lee, Add for format partition 11 of eMMC
  312. exec /system/bin/format_emmc
  313.  
  314. class_start default
  315.  
  316. ## Daemon processes to be run by init.
  317. ##
  318. service console /system/bin/sh
  319. console
  320.  
  321. # adbd is controlled by the persist.service.adb.enable system property
  322. service adbd /sbin/adbd
  323.  
  324. #Menghan Cheng, 20100728, for huawei ril
  325. on device-added-/dev/ttyUSB0
  326. chmod 666 /dev/ttyUSB0
  327. on device-added-/dev/ttyUSB2
  328. chmod 666 /dev/ttyUSB2
  329. on device-added-/dev/ttyUSB3
  330. chmod 666 /dev/ttyUSB3
  331.  
  332. service servicemanager /system/bin/servicemanager
  333. user system
  334. critical
  335. onrestart restart zygote
  336. onrestart restart media
  337.  
  338. service vold /system/bin/vold
  339. socket vold stream 0660 root mount
  340. ioprio be 2
  341.  
  342. service netd /system/bin/netd
  343. socket netd stream 0660 root system
  344.  
  345. service debuggerd /system/bin/debuggerd
  346.  
  347. #Menghan Cheng, 20100728, for huawei ril
  348. service ril-daemon /system/bin/rild -l /system/lib/libhuawei-ril.so -- -d /dev/ttyUSB2
  349. socket rild stream 660 root radio
  350. socket rild-debug stream 660 radio system
  351. user root
  352. group radio cache inet misc audio
  353.  
  354. service zygote /system/bin/app_process -Xzygote /system/bin --zygote --start-system-server
  355. socket zygote stream 666
  356. onrestart write /sys/android_power/request_state wake
  357. onrestart write /sys/power/state on
  358. onrestart restart media
  359.  
  360. service media /system/bin/mediaserver
  361. user media
  362. group system audio camera graphics inet net_bt net_bt_admin net_raw
  363. ioprio rt 4
  364.  
  365. service bootanim /system/bin/bootanimation
  366. user graphics
  367. group graphics
  368. disabled
  369. oneshot
  370.  
  371. service dbus /system/bin/dbus-daemon --system --nofork
  372. socket dbus stream 660 bluetooth bluetooth
  373. user bluetooth
  374. group bluetooth net_bt_admin
  375.  
  376. service bluetoothd /system/bin/bluetoothd -n
  377. socket bluetooth stream 660 bluetooth bluetooth
  378. socket dbus_bluetooth stream 660 bluetooth bluetooth
  379. # init.rc does not yet support applying capabilities, so run as root and
  380. # let bluetoothd drop uid to bluetooth with the right linux capabilities
  381. group bluetooth net_bt_admin misc
  382. disabled
  383.  
  384. service hfag /system/bin/sdptool add --channel=10 HFAG
  385. user bluetooth
  386. group bluetooth net_bt_admin
  387. disabled
  388. oneshot
  389.  
  390. service hsag /system/bin/sdptool add --channel=11 HSAG
  391. user bluetooth
  392. group bluetooth net_bt_admin
  393. disabled
  394. oneshot
  395.  
  396. service opush /system/bin/sdptool add --channel=12 OPUSH
  397. user bluetooth
  398. group bluetooth net_bt_admin
  399. disabled
  400. oneshot
  401.  
  402. service pbap /system/bin/sdptool add --channel=19 PBAP
  403. user bluetooth
  404. group bluetooth net_bt_admin
  405. disabled
  406. oneshot
  407.  
  408. service installd /system/bin/installd
  409. socket installd stream 600 system system
  410.  
  411. service racoon /system/bin/racoon
  412. socket racoon stream 600 system system
  413. # racoon will setuid to vpn after getting necessary resources.
  414. group net_admin
  415. disabled
  416. oneshot
  417.  
  418. service mtpd /system/bin/mtpd
  419. socket mtpd stream 600 system system
  420. user vpn
  421. group vpn net_admin net_raw
  422. disabled
  423. oneshot
  424.  
  425. service keystore /system/bin/keystore /data/misc/keystore
  426. user keystore
  427. group keystore
  428. socket keystore stream 666
  429.  
  430. service dumpstate /system/bin/dumpstate -s
  431. socket dumpstate stream 0660 shell log
  432. disabled
  433. oneshot
  434.  
  435. # Esther Hsu
  436. service regionctrl /system/bin/regionctrl
  437. socket regionctrl stream 600 system system
  438. oneshot
  439.  
  440. # JJ add drm service
  441. service oemDrmService /system/bin/mmService
  442. user root
  443.  
  444. # WH Lee, 20090518, Add sensors daemon service
  445. service sensors_daemon /system/bin/sensors_daemon
  446.  
  447. # WH Lee, 20100604, Add GPS service
  448. service glgps /system/bin/glgps -c /system/etc/gpsconfig.xml
  449. user root
  450. group root
  451.  
  452. # Ivan
  453. service regionapp /system/bin/regionapp
  454. oneshot
  455.  
  456. #rk chen, 2010/9/29, enable autorun_test.sh
  457. service run_autorun_test /system/bin/run_autorun_test.sh
  458. oneshot
  459.  
  460. # Shuli, logfilter init
  461. service lfinit /system/bin/lfinit
  462. oneshot
  463.  
  464. on boot
  465. # nvrm permissions
  466. chmod 666 /dev/nvrm
  467.  
  468. # knvrm permissions
  469. chmod 660 /dev/knvrm
  470. chown root system /dev/knvrm
  471.  
  472. # nvrpc permissions
  473. chmod 666 /dev/nvrpc
  474.  
  475. # nvmap permissions
  476. chmod 666 /dev/nvmap
  477.  
  478. # nvos permissions
  479. chmod 666 /dev/nvos
  480.  
  481. # nvhost permissions
  482. chmod 666 /dev/nvhost-ctrl
  483. chmod 666 /dev/nvhost-display
  484. chmod 666 /dev/nvhost-gr3d
  485. chmod 666 /dev/nvhost-gr2d
  486. chmod 666 /dev/nvhost-dsi
  487. chmod 666 /dev/nvhost-isp
  488. chmod 666 /dev/nvhost-mpe
  489. chmod 666 /dev/nvhost-vi
  490. # Shuli, for application(FVS) access
  491. chmod 666 /dev/ata_misc_capkey
  492. chmod 666 /dev/misc_keypad
  493. chmod 666 /dev/block/mmcblk0p10
  494.  
  495. # Shuli, for application(TouchPanel) access
  496. chmod 666 /dev/atmel_misc_touch
  497.  
  498. s
  499. chmod 666 /dev/block/mmcblk3p9
  500.  
  501. # Shuli, create system log folders.
  502. mkdir /data/systemlog 0777 root root
  503. mkdir /data/systemlog/wakelock 0777 root root
  504. mkdir /data/systemlog/kwakelock 0777 root root
  505.  
  506. # 3rd party AP: LogMeIn
  507. chmod 0755 /system/bin/RescueStarter
  508. chown nobody shell /system/bin/RescueStarter
  509.  
  510. chmod 0755 /system/bin/RescueServer
  511. chown nobody shell /system/bin/RescueServer
  512.  
  513.  
  514. # MingYan, for Write IMEI to FA (FVS)
  515. chmod 666 /dev/block/mmcblk3p14
  516.  
  517. # Adjust socket buffer to enlarge TCP receive window for high bandwidth
  518. write /proc/sys/net/ipv4/tcp_adv_win_scale 1
  519.  
  520. # wlan permissions
  521. mkdir /data/misc/wifi 0771 wifi wifi
  522. mkdir /data/misc/wifi/sockets 0771 wifi wifi
  523. chmod 0771 /data/misc/wifi
  524. mkdir /data/misc/dhcp 0771 dhcp dhcp
  525. chown dhcp dhcp /data/misc/dhcp
  526. mkdir /data/misc/dhcpcd 0771 dhcp dhcp
  527. chown dhcp dhcp /data/misc/dhcpcd
  528. setprop wifi.interface eth0
  529.  
  530. # NvLogger settings for NvMM
  531. setprop persist.tegra.nvlog.level 4
  532. # setprop persist.tegra.nvlog.14.level 5
  533.  
  534. # Power Management Log
  535. mkdir /data/misc/pmlog 0770
  536.  
  537. service nvrm_daemon /system/bin/nvrm_daemon
  538. user root
  539. onrestart restart servicemanager
  540.  
  541.  
  542. service wpa_supplicant /system/bin/wpa_supplicant -Dwext -ieth0 -c/data/misc/wifi/wpa.conf
  543. disabled
  544. oneshot
  545.  
  546. service dhcpcd /system/bin/dhcpcd eth0 -ABLK
  547. disabled
  548. oneshot
  549.  
  550. on property:init.svc.wpa_supplicant=stopped
  551. stop dhcpcd
  552.  
  553. # Eastern
  554. service hidkbd /system/bin/hidkbd
  555. socket hidkbd stream 600 system system
  556.  
  557. # Long, for EMwifi
  558. service wifid /system/bin/wifid
  559. socket wifid stream 600 system system
  560.  
  561.  
  562. # 3rd party AP: LogMeIn
  563. #Start RescueStarter for Rescue+Mobile
  564. #service RescueStarter /system/bin/RescueStarter
  565. # user nobody
  566. # group input graphics
  567. # class post-zygote_services
  568. service RescueStarter /system/bin/RescueStarter user nobody group input graphics oneshot&
  569.  
  570. on boot
  571.  
  572. # bluetooth permissions
  573. chmod 0660 /dev/ttyHS2
  574. chown bluetooth bluetooth /dev/ttyHS2
  575. chmod 0660 /sys/class/rfkill/rfkill0/state
  576. chmod 0660 /sys/class/rfkill/rfkill0/type
  577. chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
  578. chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
  579. write /sys/class/rfkill/rfkill0/state 0
  580.  
  581. service abtfilt /system/bin/abtfilt -c -d -z -n
  582. user root
  583.  
  584. service hciattach /system/bin/hciattach -n /dev/ttyHS2 any 3000000
  585. user bluetooth
  586. group system bluetooth net_bt_admin misc
  587. disabled
  588.  
  589. service djsinit /system/bin/sh /system/etc/init.djsteve.sh
  590. user root
  591. oneshot
Add Comment
Please, Sign In to add comment