Advertisement
motafoca

device_mk

Jul 11th, 2011
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. ## This device is the Commtiva Z1, and all its variants, which include:
  2.  
  3. # The gps config appropriate for this device
  4. $(call inherit-product, device/common/gps/gps_us_supl.mk)
  5.  
  6. DEVICE_PACKAGE_OVERLAYS += device/dynamax/dnp725/overlay
  7.  
  8. # HAL libs and other system binaries
  9. PRODUCT_PACKAGES += \
  10. hwprops \
  11. abtfilt \
  12. gps.dnp725 \
  13. lights.dnp725 \
  14. copybit.dnp725 \
  15. gralloc.dnp725 \
  16. libOmxCore
  17.  
  18. # Extra apps
  19. PRODUCT_PACKAGES += \
  20. Torch
  21.  
  22. ifeq ($(TARGET_PREBUILT_KERNEL),)
  23. LOCAL_KERNEL := device/dynamax/dnp725/kernel
  24. else
  25. LOCAL_KERNEL := $(TARGET_PREBUILT_KERNEL)
  26. endif
  27.  
  28. PRODUCT_COPY_FILES += \
  29. $(LOCAL_KERNEL):kernel
  30.  
  31.  
  32. # Live wallpaper packages
  33. PRODUCT_PACKAGES += \
  34. LiveWallpapers \
  35. LiveWallpapersPicker \
  36. MagicSmokeWallpapers \
  37. VisualizationWallpapers \
  38. librs_jni
  39.  
  40. # Publish that we support the live wallpaper feature.
  41. PRODUCT_COPY_FILES += \
  42. packages/wallpapers/LivePicker/android.software.live_wallpaper.xml:/system/etc/permissions/android.software.live_wallpaper.xml
  43.  
  44. # Board-specific init
  45. #PRODUCT_COPY_FILES += \
  46. # device/dynamax/dnp725/ueventd.qct.rc:root/ueventd.qct.rc \
  47. # device/dynamax/dnp725/init.qcom.rc:root/init.qcom.rc
  48.  
  49. ## RIL related stuff
  50. #PRODUCT_COPY_FILES += \
  51. device/dynamax/dnp725/spn-conf.xml:system/etc/spn-conf.xml \
  52. device/dynamax/dnp725/7x27_kybd.kl:system/usr/keylayout/7x27_kybd.kl
  53.  
  54. ## Audio stuff
  55. #PRODUCT_COPY_FILES += \
  56. # device/dynamax/dnp725/proprietary/libaudio.so:system/lib/libaudio.so \
  57. # device/dynamax/dnp725/proprietary/libaudiopolicy.so:system/lib/libaudiopolicy.so
  58.  
  59. ## 3D
  60. PRODUCT_COPY_FILES += \
  61. vendor/dynamax/dnp725/proprietary/lib/egl/libEGL_adreno200.so:system/lib/egl/libEGL_adreno200.so \
  62. vendor/dynamax/dnp725/proprietary/lib/egl/libGLESv1_CM_adreno200.so:system/lib/egl/libGLESv1_CM_adreno200.so \
  63. vendor/dynamax/dnp725/proprietary/lib/egl/libGLESv2_adreno200.so:system/lib/egl/libGLESv2_adreno200.so \
  64. vendor/dynamax/dnp725/proprietary/lib/egl/libq3dtools_adreno200.so:system/lib/egl/libq3dtools_adreno200.so \
  65. vendor/dynamax/dnp725/proprietary/lib/libgsl.so:system/lib/libgsl.so \
  66. vendor/dynamax/dnp725/proprietary/etc/firmware/yamato_pfp.fw:system/etc/firmware/yamato_pfp.fw \
  67. vendor/dynamax/dnp725/proprietary/etc/firmware/yamato_pm4.fw:system/etc/firmware/yamato_pm4.fw
  68.  
  69. $(call inherit-product, build/target/product/full_base.mk)
  70.  
  71. PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
  72. PRODUCT_NAME := dnp725
  73. PRODUCT_DEVICE := dnp725
  74. PRODUCT_MODEL := Dynamax DNP725
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement