Guest User

Untitled

a guest
Jul 19th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. #
  2.  
  3. [Settings]
  4.  
  5. # This option stops RIL plugin from creating any RIL modems.
  6. # If it's set to true, all [ril_x] sections are ignored even
  7. # if they are present, and no default configurtation is created.
  8. #
  9. # Default is false
  10. #
  11. #EmptyConfig=false
  12.  
  13. # If the phone has more than one SIM slot, the 3G/LTE module may be
  14. # shared by all modems, meaning that only one of the slots can use
  15. # 3G/LTE. In order to "hand 4G over" to the other slot, the modem
  16. # currently using 3G/LTE has to drop to GSM, release 3G/LTE module
  17. # and only then 3G/LTE can be used by the other modem. This setting
  18. # allows to disable this behaviour (say, if your phone has independent
  19. # 3G/LTE modules for each slot or you don't need 4G for both slots).
  20. # Obviously, it only has any effect if you have more than one SIM.
  21. #
  22. # Default is true (switch the current data modem to 2G when changing
  23. # the data modems)
  24. #
  25. #3GLTEHandover=true
  26.  
  27. [ril_0]
  28. name=RIL1
  29. socket=/dev/socket/rild
  30.  
  31. [ril_1]
  32. name=RIL2
  33. socket=/dev/socket/rild2
  34.  
  35. # Subscription string. Some (mostly, older) RILs require that 4 bytes
  36. # (usually SUB1 or SUB2) are written to the socket before rild starts
  37. # talking to us.
  38. #
  39. # Not sent by default.
  40. #
  41. #sub=SUB1
  42.  
  43. # RIL logging prefix, to tell one socket from another in the log.
  44. # Makes sense if you have more than one modem configured.
  45. #
  46. # No prefix by default.
  47. #
  48. #name=RILi1
  49.  
  50. # Slot id for SET_UICC_SUBSCRIPTION request.
  51. #
  52. # By default the first modem becomes slot 0, the next one slot 1 and so on.
  53. #
  54. #slot=0
  55.  
  56. # RIL request timeout, in milliseconds.
  57. #
  58. # The default is zero (no timeout)
  59. #
  60. #timeout=0
  61.  
  62. # Setting this one to false would disable 4G technology selection.
  63. #
  64. # By default 4G is enabled
  65. #
  66. #enable4G=true
  67.  
  68. # RIL_REQUEST_SET_UICC_SUBSCRIPTION is 115 in RIL version 9 (or earlier)
  69. # and 122 in RIL version 10 and later. Since ofono doesn't know in advance
  70. # which RIL version it's dealing with, it makes the decision at runtime.
  71. # Settings it to false disables the workaround and always sends 122.
  72. #
  73. # Default is true (select SET_UICC_SUBSCRIPTION based on the RIL version)
  74. #
  75. #uiccWorkaround=true
  76.  
  77. # Points to the file containing comma-separated ECC (Emergency List Codes)
  78. # list, e.g. 911,112,*911,#911. The file is tracked by ofono and when its
  79. # contents changes, it's reflected in the EmergencyNumbers property of
  80. # org.ofono.VoiceCallManager.
  81. #
  82. # If necessary, the contents of the file can be synchronized with the
  83. # Android system property by adding something like this to /init.rc:
  84. #
  85. # on property:ril.ecclist=*
  86. # write /var/lib/ofono/ril.ecclist ${ril.ecclist}
  87. # chmod 0644 /var/lib/ofono/ril.ecclist
  88. #
  89. #ecclistFile=/var/lib/ofono/ril.ecclist
  90.  
  91. # RIL_REQUEST_ALLOW_DATA may or may not be supported by your RIL.
  92. # This option allows you to forcibly enable or disable use of this request.
  93. # Possible values are auto, on and off
  94. #
  95. # Default is auto (usage based on the RIL version)
  96. #
  97. #allowDataReq=auto
  98.  
  99. # Since RIL interface doesn't provide the standard way of querying the
  100. # number of pin retries left, some RIL implementation (namely Qualcomm)
  101. # allow to query the retry count by sending the empty pin. If your RIL
  102. # actually does check the empty pin (and decrements the retry count)
  103. # then you should turn this feature off.
  104. #
  105. # Default is true
  106. #
  107. #emptyPinQuery=true
  108.  
  109. # Different RILs use different data call structures which don't necessarily
  110. # match the format specified in the data list header. The header may have
  111. # version 9 but the list may contain RIL_Data_Call_Response_v6 structures,
  112. # list version 10 may contain RIL_Data_Call_Response_v11 and so on. By default
  113. # ofono assumes that the version from the list header matches the contents
  114. # but sometimes you have to explicitly tell ofono which one to use.
  115. # Possible values are 6, 9, 11 and auto.
  116. #
  117. # Default is auto
  118. #
  119. #dataCallFormat=auto
Add Comment
Please, Sign In to add comment