Advertisement
wiktorek140

Untitled

Aug 3rd, 2018
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. sh-3.2# cat /etc/ofono/ril_subscription.conf
  2. # This is a sample configuration file for the 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.  
  11. [Settings]
  12. EmptyConfig=true
  13. allowDataReq=on
  14. dataCallFormat=11
  15.  
  16. # If the phone has more than one SIM slot, the 3G/LTE module may be
  17. # shared by all modems, meaning that only one of the slots can use
  18. # 3G/LTE. In order to "hand 4G over" to the other slot, the modem
  19. # currently using 3G/LTE has to drop to GSM, release 3G/LTE module
  20. # and only then 3G/LTE can be used by the other modem. This setting
  21. # allows to disable this behaviour (say, if your phone has independent
  22. # 3G/LTE modules for each slot or you don't need 4G for both slots).
  23. # Obviously, it only has any effect if you have more than one SIM.
  24. #
  25. # Default is true (switch the current data modem to 2G when changing
  26. # the data modems)
  27. #
  28. #3GLTEHandover=true
  29.  
  30. [ril_0]
  31.  
  32. # Required entry, defines the RIL socket path
  33. socket=/dev/socket/rild
  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=RIL1
  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. #[ril_1]
  78.  
  79. # Required entry, defines the RIL socket path
  80. #socket=/dev/socket/rild2
  81.  
  82.  
  83. sh-3.2#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement