Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. $(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk)
  2.  
  3. # The gps config appropriate for this device
  4. $(call inherit-product, device/common/gps/gps_us_supl.mk)
  5.  
  6. $(call inherit-product-if-exists, vendor/blu/p6601/p6601-vendor.mk)
  7.  
  8. DEVICE_PACKAGE_OVERLAYS += device/blu/p6601/overlay
  9.  
  10. ifeq ($(TARGET_PREBUILT_KERNEL),)
  11. LOCAL_KERNEL := device/blu/p6601/kernel
  12. else
  13. LOCAL_KERNEL := $(TARGET_PREBUILT_KERNEL)
  14. endif
  15.  
  16. PRODUCT_COPY_FILES += \
  17. $(LOCAL_KERNEL):kernel
  18.  
  19. # Permissions
  20. PRODUCT_COPY_FILES += \
  21. frameworks/native/data/etc/android.hardware.bluetooth_le.xml:system/etc/permissions/android.hardware.bluetooth_le.xml \
  22. frameworks/native/data/etc/android.hardware.bluetooth.xml:system/etc/permissions/android.hardware.bluetooth.xml \
  23. frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml \
  24. frameworks/native/data/etc/android.hardware.faketouch.xml:system/etc/permissions/android.hardware.faketouch.xml \
  25. frameworks/native/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
  26. $(LOCAL_PATH)/configs/android.hardware.microphone.xml:system/etc/permissions/android.hardware.microphone.xml \
  27. frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:system/etc/permissions/android.hardware.sensor.accelerometer.xml \
  28. frameworks/native/data/etc/android.hardware.sensor.compass.xml:system/etc/permissions/android.hardware.sensor.compass.xml \
  29. frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:system/etc/permissions/android.hardware.sensor.gyroscope.xml \
  30. frameworks/native/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
  31. frameworks/native/data/etc/android.hardware.sensor.proximity.xml:system/etc/permissions/android.hardware.sensor.proximity.xml \
  32. frameworks/native/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
  33. frameworks/native/data/etc/android.hardware.touchscreen.multitouch.distinct.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.distinct.xml \
  34. frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml \
  35. frameworks/native/data/etc/android.hardware.touchscreen.multitouch.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.xml \
  36. frameworks/native/data/etc/android.hardware.touchscreen.xml:system/etc/permissions/android.hardware.touchscreen.xml \
  37. frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml \
  38. frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \
  39. frameworks/native/data/etc/android.hardware.wifi.direct.xml:system/etc/permissions/android.hardware.wifi.direct.xml \
  40. frameworks/native/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \
  41. packages/wallpapers/LivePicker/android.software.live_wallpaper.xml:system/etc/permissions/android.software.live_wallpaper.xml \
  42. frameworks/native/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml
  43.  
  44. # fstab
  45. PRODUCT_PACKAGES += \
  46. fstab.p6601
  47.  
  48. # Init
  49. PRODUCT_PACKAGES += \
  50. init.modem.rc \
  51. init.p6601.rc \
  52. init.p6601.usb.rc \
  53. init.project.rc \
  54. ueventd.p6601.rc \
  55. init.recovery.p6601.rc
  56.  
  57. $(call inherit-product, build/target/product/full.mk)
  58.  
  59.  
  60. PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0 BUILD_FINGERPRINT=BLU/R1_HD/R1_HD:6.0/MRA58K/1468080628:user/release-keys PRIVATE_BUILD_DESC="full_p6601-user 6.0 MRA58K 1468080628 release-keys"
  61. PRODUCT_NAME := full_p6601
  62. PRODUCT_DEVICE := p6601
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement