Advertisement
Guest User

Untitled

a guest
Aug 11th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. # Copyright (C) 2012 ParanoidAndroid Project
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14.  
  15. # Check for target product
  16. ifeq (pa_geespr,$(TARGET_PRODUCT))
  17.  
  18. # Define PA bootanimation size
  19. PARANOID_BOOTANIMATION_NAME := XHDPI
  20.  
  21. # OVERLAY_TARGET adds overlay asset source
  22. OVERLAY_TARGET := pa_xhdpi
  23.  
  24. # Build paprefs from sources
  25. PREFS_FROM_SOURCE ?= false
  26.  
  27. # Include ParanoidAndroid common configuration
  28. include vendor/pa/config/pa_common.mk
  29. # inherit from common gee
  30. -include device/lge/gee-common/BoardConfigCommon.mk
  31. # Inherit AOSP device configuration
  32. $(call inherit-product, device/lge/geespr/full_geespr.mk)
  33.  
  34.  
  35. # Include CM extras
  36. EXTRA_CM_PACKAGES ?= true
  37.  
  38. # Setup device specific product configuration.
  39. PRODUCT_NAME := pa_geespr
  40. PRODUCT_BRAND := LGE
  41. PRODUCT_DEVICE := geespr
  42. PRODUCT_MODEL := LG-LS970
  43. PRODUCT_MANUFACTURER := LGE
  44.  
  45.  
  46.  
  47. #Set build fingerprint / ID / Prduct Name ect.
  48. PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=geehrc4g_spr_us BUILD_FINGERPRINT=lge/geehrc4g_spr_us/geehrc4g:4.1.2/JZO54K/LS970ZVB.1360739022:user/release-keys PRIVATE_BUILD_DESC="geehrc4g_spr_us-user 4.1.2 JZO54K LS970ZVB.1360739022 release-keys"
  49.  
  50. # Include ParanoidAndroid repos configuration
  51. include vendor/pa/config/pa_addons.mk
  52.  
  53. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement