Created
July 30, 2014 20:05
-
-
Save marduk191/593c12def4b0bc78484d to your computer and use it in GitHub Desktop.
Alternative full_presto.mk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alternative full_presto.mk in case your build method isn't calling cm.mk correctly. | |
# Replace this file in the device tree and delete cm.mk. | |
# | |
# | |
# Copyright (C) 2010 The Android Open Source Project | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
# This file is the build configuration for a full Android | |
# build for presto hardware. This cleanly combines a set of | |
# device-specific aspects (drivers) with a device-agnostic | |
# product configuration (apps). | |
# | |
# Inherit from those products. Most specific first. | |
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) | |
# Inherit from presto device | |
$(call inherit-product, device/pantech/presto/device.mk) | |
# Discard inherited values and use our own instead. | |
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0 | |
PRODUCT_NAME := full_presto | |
PRODUCT_DEVICE := presto | |
PRODUCT_BRAND := ATT | |
PRODUCT_MANUFACTURER := Pantech | |
PRODUCT_MODEL := PantechP9070 | |
## Specify phone tech before including full_phone | |
$(call inherit-product, vendor/cm/config/gsm.mk) | |
# Release name | |
PRODUCT_RELEASE_NAME := presto | |
# Inherit some common CM stuff. | |
$(call inherit-product, vendor/cm/config/common_full_phone.mk) | |
# Boot animation | |
TARGET_SCREEN_HEIGHT := 800 | |
TARGET_SCREEN_WIDTH := 480 | |
#copy boot animation | |
PRODUCT_COPY_FILES += \ | |
vendor/cm/prebuilt/common/bootanimation/480.zip:system/media/bootanimation.zip | |
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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment