blob: 4c9a8348c4e5e414bc9490315f95c1d6168b71e7 [file] [log] [blame]
Colin Crossa9e55ed2013-10-07 14:15:18 -07001#
2# Copyright (C) 2013 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
Ying Wang1a2cb212013-11-25 13:43:35 -080017PRODUCT_PACKAGES := \
18 libwpa_client \
19 hostapd \
20 wpa_supplicant \
21 wpa_supplicant.conf
22
Colin Cross11a18c22014-02-19 17:49:10 -080023ifeq ($(TARGET_PREBUILT_KERNEL),)
Rom Lemarchand37e127d2014-03-24 18:08:47 +000024LOCAL_KERNEL := device/htc/flounder-kernel/Image
Colin Cross11a18c22014-02-19 17:49:10 -080025else
26LOCAL_KERNEL := $(TARGET_PREBUILT_KERNEL)
27endif
28
Colin Crossa9e55ed2013-10-07 14:15:18 -070029PRODUCT_COPY_FILES := \
30 $(LOCAL_KERNEL):kernel \
Colin Cross6e6bad22013-10-18 10:52:53 -070031 $(LOCAL_PATH)/init.flounder.rc:root/init.flounder.rc \
32 $(LOCAL_PATH)/init.flounder.usb.rc:root/init.flounder.usb.rc \
33 $(LOCAL_PATH)/fstab.flounder:root/fstab.flounder \
34 $(LOCAL_PATH)/ueventd.flounder.rc:root/ueventd.flounder.rc
Colin Crossa9e55ed2013-10-07 14:15:18 -070035
Colin Cross2e4e82b2014-01-31 18:41:57 -080036# Copy flounder files as flounder64
37PRODUCT_COPY_FILES += \
Colin Cross11a18c22014-02-19 17:49:10 -080038 $(LOCAL_PATH)/init.flounder.rc:root/init.flounder64.rc \
Colin Cross2e4e82b2014-01-31 18:41:57 -080039 $(LOCAL_PATH)/init.flounder.usb.rc:root/init.flounder64.usb.rc \
40 $(LOCAL_PATH)/fstab.flounder:root/fstab.flounder64 \
41 $(LOCAL_PATH)/ueventd.flounder.rc:root/ueventd.flounder64.rc
42
Colin Crossa9e55ed2013-10-07 14:15:18 -070043# Copy ardbeg files to allow booting on flounder or ardbeg for now
44PRODUCT_COPY_FILES += \
45 device/nvidia/ardbeg/init.ardbeg.rc:root/init.ardbeg.rc \
46 device/nvidia/ardbeg/init.ardbeg.usb.rc:root/init.ardbeg.usb.rc \
47 device/nvidia/ardbeg/fstab.ardbeg:root/fstab.ardbeg \
48 device/nvidia/ardbeg/ueventd.ardbeg.rc:root/ueventd.ardbeg.rc \
49 device/nvidia/ardbeg/raydium_ts.idc:system/usr/idc/raydium_ts.idc
50
Colin Cross11a18c22014-02-19 17:49:10 -080051PRODUCT_COPY_FILES += \
52 $(LOCAL_PATH)/touch/touch_fusion.cfg:system/vendor/firmware/touch_fusion.cfg \
53 $(LOCAL_PATH)/touch/maxim_fp35.bin:system/vendor/firmware/maxim_fp35.bin \
54 $(LOCAL_PATH)/touch/touch_fusion.idc:system/usr/idc/touch_fusion.idc \
55 $(LOCAL_PATH)/touch/touch_fusion:system/vendor/bin/touch_fusion
56
Colin Crossebdbcb22013-10-10 15:58:21 -070057PRODUCT_PACKAGES += \
58 power.ardbeg \
59 lights.ardbeg
60
Dmitry Shmidtc63232c2013-12-12 11:07:43 -080061PRODUCT_PACKAGES += \
62 libwpa_client \
63 hostapd \
64 wpa_supplicant \
65 wpa_supplicant.conf
66
Colin Crossa9e55ed2013-10-07 14:15:18 -070067PRODUCT_COPY_FILES += \
68 frameworks/native/data/etc/tablet_core_hardware.xml:system/etc/permissions/tablet_core_hardware.xml \
69 frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml \
70 frameworks/native/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \
Dmitry Shmidt9f7dabd2014-03-24 14:50:02 -070071 frameworks/native/data/etc/android.hardware.wifi.direct.xml:system/etc/permissions/android.hardware.wifi.direct.xml \
Yogesh Agrawal9240c1a2013-10-16 15:13:32 +053072 frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml \
Colin Crossa9e55ed2013-10-07 14:15:18 -070073 frameworks/native/data/etc/android.hardware.camera.flash-autofocus.xml:system/etc/permissions/android.hardware.camera.flash-autofocus.xml \
74 frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \
75 frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml \
76 frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \
77 frameworks/native/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
78 frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:system/etc/permissions/android.hardware.sensor.accelerometer.xml \
79 frameworks/native/data/etc/android.hardware.sensor.barometer.xml:system/etc/permissions/android.hardware.sensor.barometer.xml \
80 frameworks/native/data/etc/android.hardware.sensor.compass.xml:system/etc/permissions/android.hardware.sensor.compass.xml \
81 frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:system/etc/permissions/android.hardware.sensor.gyroscope.xml \
82 frameworks/native/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
Colin Cross5a451b82013-12-26 17:50:09 -080083 frameworks/native/data/etc/android.hardware.audio.low_latency.xml:system/etc/permissions/android.hardware.audio.low_latency.xml \
84 frameworks/native/data/etc/com.android.nfc_extras.xml:system/etc/permissions/com.android.nfc_extras.xml \
85 frameworks/native/data/etc/android.hardware.nfc.xml:system/etc/permissions/android.hardware.nfc.xml \
86 frameworks/native/data/etc/android.hardware.nfc.hce.xml:system/etc/permissions/android.hardware.nfc.hce.xml
Colin Crossa9e55ed2013-10-07 14:15:18 -070087
Dmitry Shmidtc4a032a2013-10-09 14:57:38 -070088PRODUCT_COPY_FILES += \
Lajos Molnar4389f092014-03-19 14:45:02 -070089 frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:system/etc/media_codecs_google_audio.xml \
90 frameworks/av/media/libstagefright/data/media_codecs_google_video.xml:system/etc/media_codecs_google_video.xml \
Colin Cross6e6bad22013-10-18 10:52:53 -070091 $(LOCAL_PATH)/media_codecs.xml:system/etc/media_codecs.xml \
92 $(LOCAL_PATH)/media_profiles.xml:system/etc/media_profiles.xml \
Eric Laurente9b88202013-12-17 17:57:18 -080093 $(LOCAL_PATH)/audio_policy.conf:system/etc/audio_policy.conf \
94 $(LOCAL_PATH)/mixer_paths_1.xml:system/etc/mixer_paths_1.xml \
95 $(LOCAL_PATH)/mixer_paths_0.xml:system/etc/mixer_paths_0.xml
Yogesh Agrawal9240c1a2013-10-16 15:13:32 +053096
97PRODUCT_COPY_FILES += \
Colin Cross6e6bad22013-10-18 10:52:53 -070098 $(LOCAL_PATH)/nvaudio_conf.xml:system/etc/nvaudio_conf.xml \
Alex Ray016f3a12013-10-23 17:02:11 -070099 $(LOCAL_PATH)/nvcamera.conf:system/etc/nvcamera.conf \
Colin Cross6e6bad22013-10-18 10:52:53 -0700100 $(LOCAL_PATH)/bcmdhd.cal:system/etc/wifi/bcmdhd.cal
Dmitry Shmidtc4a032a2013-10-09 14:57:38 -0700101
edwin_tunge98db7e2013-12-05 12:08:00 +0800102PRODUCT_COPY_FILES += \
edwin_tungac7b5c12014-01-24 19:46:58 +0800103 $(LOCAL_PATH)/gps/bcm/gps.bcm47521.conf:system/etc/gps.bcm47521.conf \
104 $(LOCAL_PATH)/gps/bcm/glgps:system/bin/glgps \
105 $(LOCAL_PATH)/gps/bcm/gpsconfig.xml:system/etc/gpsconfig.xml \
106 $(LOCAL_PATH)/gps/bcm/gps.bcm47521.so:system/lib/hw/gps.bcm47521.so
edwin_tunge98db7e2013-12-05 12:08:00 +0800107
Martijn Coenence789142014-02-25 10:50:01 -0800108# NFC feature + config files
109PRODUCT_COPY_FILES += \
110 frameworks/native/data/etc/android.hardware.nfc.xml:system/etc/permissions/android.hardware.nfc.xml \
111 frameworks/native/data/etc/android.hardware.nfc.hce.xml:system/etc/permissions/android.hardware.nfc.hce.xml \
112 device/htc/flounder/nfc/libnfc-brcm.conf:system/etc/libnfc-brcm.conf \
113 device/htc/flounder/nfc/libnfc-brcm-20795a10.conf:system/etc/libnfc-brcm-20795a10.conf
114
Colin Crossa9e55ed2013-10-07 14:15:18 -0700115PRODUCT_AAPT_CONFIG := xlarge hdpi xhdpi
116PRODUCT_AAPT_PREF_CONFIG := xhdpi
117
118PRODUCT_CHARACTERISTICS := tablet,nosdcard
119
120DEVICE_PACKAGE_OVERLAYS := \
Colin Cross6e6bad22013-10-18 10:52:53 -0700121 $(LOCAL_PATH)/overlay
Colin Crossa9e55ed2013-10-07 14:15:18 -0700122
123PRODUCT_TAGS += dalvik.gc.type-precise
124
Colin Cross5a451b82013-12-26 17:50:09 -0800125# NFC packages
Martijn Coenence789142014-02-25 10:50:01 -0800126# Note: NFC HAL is built with $(TARGET_DEVICE), so this
127# includes both flounder and flounder64 HALs to support both
Colin Cross5a451b82013-12-26 17:50:09 -0800128PRODUCT_PACKAGES += \
Martijn Coenence789142014-02-25 10:50:01 -0800129 nfc_nci.flounder \
130 nfc_nci.flounder64 \
Colin Cross5a451b82013-12-26 17:50:09 -0800131 NfcNci \
132 Tag \
Colin Cross5a451b82013-12-26 17:50:09 -0800133
Colin Crossa9e55ed2013-10-07 14:15:18 -0700134PRODUCT_PACKAGES += \
135 librs_jni \
136 com.android.future.usb.accessory
137
138PRODUCT_PACKAGES += \
Colin Cross5b94bde2013-10-10 14:56:56 -0700139 power.flounder \
Andy Chuang92af8b22014-03-14 18:38:17 +0800140 lights.flounder \
141 sensors.flounder
Colin Crossa9e55ed2013-10-07 14:15:18 -0700142
143# Filesystem management tools
144PRODUCT_PACKAGES += \
145 e2fsck
146
147PRODUCT_PROPERTY_OVERRIDES := \
148 wifi.interface=wlan0 \
149 ro.opengles.version=196608 \
150 ro.sf.lcd_density=320 \
151 ro.zygote.disable_gl_preload=true \
152 ro.hwui.texture_cache_size=72 \
153 ro.hwui.layer_cache_size=48 \
154 ro.hwui.r_buffer_cache_size=8 \
155 ro.hwui.path_cache_size=32 \
156 ro.hwui.gradient_cache_size=1 \
157 ro.hwui.drop_shadow_cache_size=6 \
158 ro.hwui.texture_cache_flushrate=0.4 \
159 ro.hwui.text_small_cache_width=1024 \
160 ro.hwui.text_small_cache_height=1024 \
161 ro.hwui.text_large_cache_width=2048 \
162 ro.hwui.text_large_cache_height=1024 \
Thomas.TT_Linc6888472014-01-22 11:30:52 +0800163 ro.hwui.disable_scissor_opt=true \
164 ro.bt.bdaddr_path=/sys/module/flounder_bdaddress/parameters/bdaddress
Colin Crossa9e55ed2013-10-07 14:15:18 -0700165
166# setup dalvik vm configs.
167$(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk)
168
169# set default USB configuration
170PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
xerox_linf4ec2102014-03-18 23:02:54 +0800171 persist.sys.usb.config=mtp \
172 ro.adb.secure=1
Colin Crossa9e55ed2013-10-07 14:15:18 -0700173
174# for off charging mode
175PRODUCT_PACKAGES += \
176 charger \
177 charger_res_images
178
Eric Laurente9b88202013-12-17 17:57:18 -0800179# for audio
180PRODUCT_PACKAGES += \
181 audio.primary.flounder \
182 audio.a2dp.default \
183 audio.usb.default \
184 audio.r_submix.default \
185
Colin Cross11a18c22014-02-19 17:49:10 -0800186$(call inherit-product-if-exists, hardware/nvidia/tegra132/tegra132.mk)
187$(call inherit-product-if-exists, vendor/nvidia/proprietary-tegra132/tegra132-vendor.mk)
Dmitry Shmidt2faa10e2014-02-24 14:42:14 -0800188$(call inherit-product-if-exists, vendor/htc/flounder/device-vendor.mk)
Dmitry Shmidt22e6c162013-12-18 15:09:32 -0800189$(call inherit-product-if-exists, hardware/broadcom/wlan/bcmdhd/firmware/bcm4354/device-bcm.mk)