android_device_htc_click/click.mk

179 lines
5.9 KiB
Makefile
Raw Normal View History

2010-09-01 17:23:34 +00:00
#
# Copyright (C) 2008 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.
#
2011-01-31 21:52:11 +00:00
DEVICE_PACKAGE_OVERLAYS += device/htc/click/overlay
2010-09-01 17:23:34 +00:00
# Defines for Vold to config fstab defs
2010-12-30 17:45:01 +00:00
PRODUCT_COPY_FILES += \
device/htc/click/vold.fstab:system/etc/vold.fstab
2010-12-30 17:45:01 +00:00
# Libs to be added to this ROM
2010-09-01 17:23:34 +00:00
PRODUCT_PACKAGES += \
librs_jni \
2011-01-11 20:34:14 +00:00
sensors.bahamas \
lights.bahamas \
copybit.bahamas \
gralloc.bahamas \
gps.bahamas \
libOmxCore \
libmm-omxcore \
libOmxVidEnc \
2011-01-11 20:34:14 +00:00
wlan_loader \
tiwlan.ini \
2011-01-12 07:42:14 +00:00
libcamera \
2011-01-11 20:34:14 +00:00
librpc \
dhcpcd.conf
2010-09-01 17:23:34 +00:00
# Add Gallery 3D / Normal
PRODUCT_PACKAGES += Gallery
# Boot kernel files
2011-01-11 20:34:14 +00:00
PRODUCT_COPY_FILES += \
device/htc/click/init.bahamas.rc:root/init.bahamas.rc \
device/htc/click/ueventd.bahamas.rc:root/ueventd.bahamas.rc
2010-09-01 17:23:34 +00:00
# from device_dream_sapphire.mk
PRODUCT_COPY_FILES += \
2011-01-11 20:34:14 +00:00
frameworks/base/data/etc/android.hardware.camera.autofocus.xml:system/etc/permissions/android.hardware.camera.autofocus.xml \
2010-09-01 17:23:34 +00:00
frameworks/base/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
frameworks/base/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
frameworks/base/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
frameworks/base/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml
# keychars and keylayout files
PRODUCT_COPY_FILES += \
device/htc/click/custom/keychars/bahamas-keypad.kcm.bin:system/usr/keychars/bahamas-keypad.kcm.bin \
device/htc/click/custom/keychars/qwerty.kcm.bin:system/usr/keychars/qwerty.kcm.bin \
device/htc/click/custom/keychars/qwerty2.kcm.bin:system/usr/keychars/qwerty2.kcm.bin \
device/htc/click/custom/keylayout/AVRCP.kl:system/usr/keylayout/AVRCP.kl \
device/htc/click/custom/keylayout/bahamas-keypad.kl:system/usr/keylayout/bahamas-keypad.kl \
device/htc/click/custom/keylayout/h2w_headset.kl:system/usr/keylayout/h2w_headset.kl \
device/htc/click/custom/keylayout/qwerty.kl:system/usr/keylayout/qwerty.kl
# extra etc config files
PRODUCT_COPY_FILES += \
device/htc/click/custom/10calibrate_screen:system/etc/init.d/10calibrate_screen \
device/htc/click/custom/sysctl.conf:system/etc/sysctl.conf
# precompiled files for /system/bin
PRODUCT_COPY_FILES += \
device/htc/click/custom/compcache:system/bin/compcache \
device/htc/click/custom/handle_compcache:system/bin/handle_compcache \
device/htc/click/custom/rzscontrol:system/bin/rzscontrol
2011-01-11 20:34:14 +00:00
PRODUCT_PROPERTY_OVERRIDES += \
2010-09-01 17:23:34 +00:00
ro.media.dec.jpeg.memcap=10000000
PRODUCT_PROPERTY_OVERRIDES += \
rild.libpath=/system/lib/libhtc_ril.so \
ro.ril.ecc.HTC-ELL=92,93,94 \
2011-01-11 20:34:14 +00:00
ro.ril.ecc.HTC-WWE=999 \
2010-09-01 17:23:34 +00:00
ro.ril.enable.a52.HTC-ITA=1 \
ro.ril.enable.a53.HTC-ITA=1 \
ro.ril.enable.a52=0 \
ro.ril.enable.a53=1 \
2010-09-01 17:23:34 +00:00
ro.ril.enable.dtm = 1 \
2011-01-11 20:34:14 +00:00
ro.ril.gprsclass = 12 \
ro.ril.hsdpa.category=8 \
ro.ril.hsupa.category=5 \
ro.ril.hsxpa=2 \
ro.ril.def.agps.mode = 2
2010-09-01 17:23:34 +00:00
# Time between scans in seconds. Keep it high to minimize battery drain.
# This only affects the case in which there are remembered access points,
# but none are in range.
PRODUCT_PROPERTY_OVERRIDES += \
wifi.interface = tiwlan0 \
2011-01-11 20:34:14 +00:00
wifi.supplicant_scan_interval=45 \
ro.tether.denied=true
2010-09-01 17:23:34 +00:00
# density in DPI of the LCD of this board. This is used to scale the UI
# appropriately. If this property is not defined, the default value is 120 dpi.
PRODUCT_PROPERTY_OVERRIDES += \
ro.sf.lcd_density=120
# View configuration for QVGA
PRODUCT_PROPERTY_OVERRIDES += \
view.fading_edge_length=8 \
view.touch_slop=15 \
view.minimum_fling_velocity=25 \
view.scroll_friction=0.008
2010-09-01 17:23:34 +00:00
# Default network type
# 0 => WCDMA Preferred.
PRODUCT_PROPERTY_OVERRIDES += \
2011-01-11 20:34:14 +00:00
ro.telephony.default_network=0 \
ro.com.google.locationfeatures=1
2010-09-01 17:23:34 +00:00
PRODUCT_PROPERTY_OVERRIDES += \
ro.opengles.version=65536 \
2011-01-11 20:34:14 +00:00
persist.sys.use_dithering=0
2010-09-01 17:23:34 +00:00
2011-01-11 20:34:14 +00:00
# Disable fs check on boot by default
2010-09-01 17:23:34 +00:00
PRODUCT_PROPERTY_OVERRIDES += \
2011-01-11 20:34:14 +00:00
sys.checkfs.fat=false
PRODUCT_PROPERTY_OVERRIDES += \
2011-01-11 20:34:14 +00:00
ro.config.notification_sound=tweeters.ogg \
ro.config.alarm_alert=Alarm_Classic.ogg
# Enable JIT by default
PRODUCT_PROPERTY_OVERRIDES += \
2011-01-12 07:42:14 +00:00
dalvik.vm.execution-mode=int:fast
2011-01-11 20:34:14 +00:00
# VM heap size
PRODUCT_PROPERTY_OVERRIDES += \
2011-01-11 20:34:14 +00:00
dalvik.vm.heapsize=24m
# Enable compcache
PRODUCT_PROPERTY_OVERRIDES += \
ro.compcache.default=18
2010-09-01 17:23:34 +00:00
# Makes HOME ADW / OTHERS to be always in memoory
PRODUCT_PROPERTY_OVERRIDES += \
pref_lock_home=1
2010-09-01 17:23:34 +00:00
# media configuration xml file
PRODUCT_COPY_FILES += \
device/htc/click/media_profiles.xml:/system/etc/media_profiles.xml
2010-09-01 17:23:34 +00:00
2011-01-11 20:34:14 +00:00
# Kernel Targets
ifeq ($(TARGET_PREBUILT_KERNEL),)
LOCAL_KERNEL := device/htc/click/custom/kernel
2011-01-11 20:34:14 +00:00
else
LOCAL_KERNEL := $(TARGET_PREBUILT_KERNEL)
endif
2010-09-01 17:23:34 +00:00
2011-01-11 20:34:14 +00:00
PRODUCT_COPY_FILES += \
$(LOCAL_KERNEL):kernel
2011-01-11 20:34:14 +00:00
$(call inherit-product, device/common/gps/gps_eu_supl.mk)
$(call inherit-product, device/htc/common/common.mk)
$(call inherit-product, build/target/product/full_base.mk)
2010-09-01 17:23:34 +00:00
PRODUCT_NAME := htc_click
PRODUCT_DEVICE := click
# See comment at the top of this file. This is where the other
# half of the device-specific product definition file takes care
# of the aspects that require proprietary drivers that aren't
# commonly available
$(call inherit-product-if-exists, vendor/htc/click/click-vendor.mk)
# Added all the kernel modules to be copyed
$(call inherit-product-if-exists, device/htc/click/KernelModules.mk)