Advertisement
Guest User

Untitled

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