Guest User

Untitled

a guest
Jun 18th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1.  
  2. # Telephony property for CDMA
  3. PRODUCT_PROPERTY_OVERRIDES += \
  4. ro.config.vc_call_vol_steps=15 \
  5. ro.telephony.default_network=4 \
  6. ro.com.google.clientidbase=android-sprint-us \
  7. ro.cdma.home.operator.numeric=310120 \
  8. ro.cdma.home.operator.alpha=Sprint \
  9. net.cdma.pppd.authtype=require-pap \
  10. net.cdma.pppd.user=user[SPACE]SprintNextel \
  11. net.cdma.datalinkinterface=/dev/ttyCDMA0 \
  12. net.interfaces.defaultroute=cdma \
  13. mobiledata.interfaces=eth0,gprs,ppp0 \
  14. net.connectivity.type=CDMA1 \
  15. ro.telephony.ril_class=samsung \
  16. ro.ril.samsung_cdma=true
  17.  
  18. # These are the hardware-specific settings that are stored in system properties.
  19. # Note that the only such settings should be the ones that are too low-level to
  20. # be reachable from resources or other mechanisms.
  21. PRODUCT_PROPERTY_OVERRIDES += \
  22. wifi.interface=eth0 \
  23. wifi.supplicant_scan_interval=120 \
  24. dalvik.vm.heapsize=32m \
  25. dalvik.vm.dexopt-data-only=1 \
  26. ro.opengles.version=65537
  27.  
  28. # enable Google-specific location features,
  29. # like NetworkLocationProvider and LocationCollector
  30. PRODUCT_PROPERTY_OVERRIDES += \
  31. ro.com.google.locationfeatures=1 \
  32. ro.com.google.networklocation=1
  33.  
  34. # Extended JNI checks
  35. # The extended JNI checks will cause the system to run more slowly, but they can spot a variety of nasty bugs
  36. # before they have a chance to cause problems.
  37. # Default=true for development builds, set by android buildsystem.
  38. PRODUCT_PROPERTY_OVERRIDES += \
  39. ro.kernel.android.checkjni=0 \
  40. dalvik.vm.checkjni=false
  41.  
  42.  
  43. # Kernel
  44. LOCAL_KERNEL := device/samsung/moment/kernel.bin
  45. PRODUCT_COPY_FILES += \
  46. $(LOCAL_KERNEL):kernel
  47.  
  48. # kernel modules
  49. PRODUCT_COPY_FILES += $(foreach module,\
  50. $(wildcard device/samsung/moment/*.ko),\
  51. $(module):system/lib/modules/$(notdir $(module)))
  52.  
  53. # See comment at the top of this file. This is where the other
  54. # half of the device-specific product definition file takes care
  55. # of the aspects that require proprietary drivers that aren't
  56. # commonly available
  57. $(call inherit-product-if-exists, vendor/samsung/moment/moment-vendor.mk)
Add Comment
Please, Sign In to add comment