Advertisement
fosser22

Untitled

Feb 5th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. # Include thexfactor2011 custom compcache (must be first)
  2. PRODUCT_COPY_FILES += \
  3. vendor/drh/prebuilt/common/bin/compcache:system/bin/compcache
  4.  
  5. # Inherit common CM stuff
  6. $(call inherit-product, vendor/cm/config/common.mk)
  7.  
  8. # Bring in all audio files
  9. include frameworks/base/data/sounds/NewAudio.mk
  10.  
  11. # Include CM audio files
  12. include vendor/cm/config/cm_audio.mk
  13.  
  14. # Default ringtone
  15. PRODUCT_PROPERTY_OVERRIDES += \
  16. ro.config.ringtone=Orion.ogg \
  17. ro.config.notification_sound=Deneb.ogg \
  18. ro.config.alarm_alert=Hassium.ogg
  19.  
  20. #ZRAM defaults
  21. PRODUCT_PROPERTY_OVERRIDES += \
  22. ro.zram.default=18
  23.  
  24. # BT config
  25. PRODUCT_COPY_FILES += \
  26. system/bluetooth/data/main.nonsmartphone.conf:system/etc/bluetooth/main.conf
  27.  
  28.  
  29. # TeamDRH
  30.  
  31. # Replace CM10.1 files
  32. vendor/drh/prebuilt/common/etc/sysctl.conf:system/etc/sysctl.conf
  33.  
  34. ifeq ($(TARGET_SCREEN_WIDTH) $(TARGET_SCREEN_HEIGHT),$(space))
  35. PRODUCT_COPY_FILES += \
  36. vendor/cm/prebuilt/common/bootanimation/600.zip:system/media/bootanimation.zip
  37. endif
  38.  
  39. # TeamDRH Extra Product Packages
  40.  
  41. # CyanogenMod Packages
  42. PRODUCT_PACKAGES += \
  43. Superuser \
  44. Superuser.apk \
  45. su
  46.  
  47. # TeamDRH Overlays
  48.  
  49. DRH_VERSION_MAJOR = JB
  50. DRH_VERSION_MINOR = Alpha
  51. DRH_VERSION_MAINTENANCE = 5.0.0
  52.  
  53. #cm no longer uses squisher
  54. #TARGET_CUSTOM_RELEASETOOL := vendor/drh/tools/squisher
  55.  
  56. CM_VERSION := TEAMDRH
  57. DRH_VERSION := $(CM_VERSION)-$(TARGET_PRODUCT)-$(DRH_VERSION_MAJOR)-$(DRH_VERSION_MINOR)-$(DRH_VERSION_MAINTENANCE)-$(shell date +%0d%^b%Y-%H%M%S)
  58.  
  59. PRODUCT_PROPERTY_OVERRIDES += \
  60. ro.cm.version=$(CM_VERSION) \
  61. ro.modversion=$(CM_VERSION) \
  62. ro.drh.version=$(DRH_VERSION)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement