akhilkalwakurthy

ril_subscription.conf

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