Home | History | Annotate | Download | only in passion
      1 #
      2 # Copyright (C) 2009 The Android Open Source Project
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #      http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 #
     16 
     17 #
     18 # This is the product configuration for a generic GSM passion,
     19 # not specialized for any geography.
     20 #
     21 
     22 ## (1) First, the most specific values, i.e. the aspects that are specific to GSM
     23 
     24 PRODUCT_COPY_FILES := \
     25     device/htc/passion/init.mahimahi.rc:root/init.mahimahi.rc \
     26     device/htc/passion/ueventd.mahimahi.rc:root/ueventd.mahimahi.rc
     27 
     28 PRODUCT_PROPERTY_OVERRIDES := \
     29     ro.sf.lcd_density=240 \
     30     rild.libpath=/system/lib/libhtc_ril.so \
     31     wifi.interface=eth0 \
     32     wifi.supplicant_scan_interval=15
     33 
     34 # Default network type.
     35 # 0 => WCDMA preferred.
     36 PRODUCT_PROPERTY_OVERRIDES += \
     37     ro.telephony.default_network=0
     38 
     39 # The OpenGL ES API level that is natively supported by this device.
     40 # This is a 16.16 fixed point number
     41 PRODUCT_PROPERTY_OVERRIDES += \
     42     ro.opengles.version=131072
     43 
     44 # This is a high density device with more memory, so larger vm heaps for it.
     45 PRODUCT_PROPERTY_OVERRIDES += \
     46     dalvik.vm.heapsize=32m
     47 
     48 
     49 ## (2) Also get non-open-source GSM-specific aspects if available
     50 $(call inherit-product-if-exists, vendor/htc/passion/passion-vendor.mk)
     51 
     52 ## (3)  Finally, the least specific parts, i.e. the non-GSM-specific aspects
     53 $(call inherit-product, device/htc/passion-common/passion.mk)
     54