Advertisement
Guest User

Untitled

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