Advertisement
marduk191

full_presto.mk ALT

Jul 30th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 2.13 KB | None | 0 0
  1. # Alternative full_presto.mk for cm11 in case your build method isn't calling cm.mk correctly.
  2. # Replace this file in the device tree and delete cm.mk.
  3. #
  4. #
  5. # Copyright (C) 2010 The Android Open Source Project
  6. #
  7. # Licensed under the Apache License, Version 2.0 (the "License");
  8. # you may not use this file except in compliance with the License.
  9. # You may obtain a copy of the License at
  10. #
  11. #      http://www.apache.org/licenses/LICENSE-2.0
  12. #
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18.  
  19. #
  20. # This file is the build configuration for a full Android
  21. # build for presto hardware. This cleanly combines a set of
  22. # device-specific aspects (drivers) with a device-agnostic
  23. # product configuration (apps).
  24. #
  25.  
  26. # Inherit from those products. Most specific first.
  27. $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)
  28.  
  29. # Inherit from presto device
  30. $(call inherit-product, device/pantech/presto/device.mk)
  31.  
  32. # Discard inherited values and use our own instead.
  33. PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
  34.  
  35. PRODUCT_NAME         := full_presto
  36. PRODUCT_DEVICE       := presto
  37. PRODUCT_BRAND        := ATT
  38. PRODUCT_MANUFACTURER := Pantech
  39. PRODUCT_MODEL        := PantechP9070
  40.  
  41. ## Specify phone tech before including full_phone
  42. $(call inherit-product, vendor/cm/config/gsm.mk)
  43.  
  44. # Release name
  45. PRODUCT_RELEASE_NAME := presto
  46.  
  47. # Inherit some common CM stuff.
  48. $(call inherit-product, vendor/cm/config/common_full_phone.mk)
  49.  
  50. # Boot animation
  51. TARGET_SCREEN_HEIGHT := 800
  52. TARGET_SCREEN_WIDTH  := 480
  53.  
  54. #copy boot animation
  55. PRODUCT_COPY_FILES += \
  56. vendor/cm/prebuilt/common/bootanimation/480.zip:system/media/bootanimation.zip
  57.  
  58.  
  59. PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=PantechP9070 TARGET_DEVICE=PantechP9070 BUILD_FINGERPRINT="ATT/PantechP9070/presto:4.0.4/IMM76I/presto_0903:user/release-keys" PRIVATE_BUILD_DESC="Pantech Presto P9070 release-keys"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement