-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathplatform.mk
132 lines (109 loc) · 4.04 KB
/
platform.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Copyright (C) 2014 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.
# Platform path
PLATFORM_COMMON_PATH := device/sony/kanuti
TARGET_LEGACY_KEYMASTER := true
$(call inherit-product, device/sony/common/common.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
SOMC_PLATFORM := kanuti
SOMC_KERNEL_VERSION := 4.4
SONY_ROOT := $(PLATFORM_COMMON_PATH)/rootdir
# Audio
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/etc/audio_tuning_mixer.txt:$(TARGET_COPY_OUT_VENDOR)/etc/audio_tuning_mixer.txt
# Media
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \
$(SONY_ROOT)/vendor/etc/media_profiles.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles.xml
# Qualcomm WiFi
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/etc/wifi/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \
$(SONY_ROOT)/vendor/etc/wifi/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf
# Keylayout
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/usr/keylayout/gpio-keys.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/gpio-keys.kl
# IDC
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/usr/idc/cyttsp4_mt.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/cyttsp4_mt.idc \
$(SONY_ROOT)/vendor/usr/idc/cyttsp5_mt.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/cyttsp5_mt.idc
# MSM IRQ Balancer configuration file
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/etc/msm_irqbalance.conf:$(TARGET_COPY_OUT_VENDOR)/etc/msm_irqbalance.conf
# RQBalance-PowerHAL configuration
PRODUCT_COPY_FILES += \
$(SONY_ROOT)/vendor/etc/rqbalance_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/rqbalance_config.xml
# Platform specific init
PRODUCT_PACKAGES += \
init.kanuti \
init.kanuti.pwr \
ueventd
# Audio
PRODUCT_PACKAGES += \
audio.primary.msm8916
# GFX
PRODUCT_PACKAGES += \
gralloc.msm8916 \
copybit.msm8916 \
hwcomposer.msm8916 \
memtrack.msm8916
# GPS
PRODUCT_PACKAGES += \
gps.msm8916
# CAMERA
PRODUCT_PACKAGES += \
camera.msm8916
# Bluetooth
PRODUCT_PROPERTY_OVERRIDES += \
ro.qualcomm.bt.hci_transport=smd
# aDSP sensors
## max rate
PRODUCT_PROPERTY_OVERRIDES += \
ro.qti.sensors.max_accel_rate=false \
ro.qti.sensors.max_gyro_rate=false \
ro.qti.sensors.max_mag_rate=false \
ro.qti.sensors.max_geomag_rotv=50
## sensor type
PRODUCT_PROPERTY_OVERRIDES += \
ro.qti.sdk.sensors.gestures=false \
ro.qti.sensors.pedometer=false \
ro.qti.sensors.step_detector=false \
ro.qti.sensors.step_counter=false \
ro.qti.sensors.pam=false \
ro.qti.sensors.scrn_ortn=false \
ro.qti.sensors.smd=true \
ro.qti.sensors.game_rv=false \
ro.qti.sensors.georv=false \
ro.qti.sensors.cmc=false \
ro.qti.sensors.bte=false \
ro.qti.sensors.fns=false \
ro.qti.sensors.qmd=false \
ro.qti.sensors.amd=false \
ro.qti.sensors.rmd=false \
ro.qti.sensors.vmd=false \
ro.qti.sensors.gtap=false \
ro.qti.sensors.tap=false \
ro.qti.sensors.facing=false \
ro.qti.sensors.tilt=false \
ro.qti.sensors.tilt_detector=false \
ro.qti.sensors.dpc=false \
ro.qti.sensors.wu=false
# USB controller setup
PRODUCT_PROPERTY_OVERRIDES += \
sys.usb.controller=msm_hsusb
# WiFi MAC address path
PRODUCT_PROPERTY_OVERRIDES += \
ro.wifi.addr_path=/sys/devices/soc/a000000.qcom,wcnss-wlan/wcnss_mac_addr
# setup dm-verity configs.
PRODUCT_SYSTEM_VERITY_PARTITION := /dev/block/platform/soc/7824900.sdhci/by-name/system
$(call inherit-product, build/target/product/verity.mk)