Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 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 | |
Amit Pundir | d477f82 | 2020-02-07 22:26:08 +0530 | [diff] [blame] | 17 | PRODUCT_SOONG_NAMESPACES += \ |
| 18 | device/linaro/dragonboard |
| 19 | |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 20 | # setup dalvik vm configs |
| 21 | $(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk) |
| 22 | |
Amit Pundir | 44f3990 | 2021-01-12 16:45:02 +0530 | [diff] [blame] | 23 | # Enable Virtual A/B |
| 24 | AB_OTA_UPDATER := true |
| 25 | AB_OTA_PARTITIONS += \ |
| 26 | product \ |
| 27 | system \ |
| 28 | system_ext \ |
| 29 | vendor |
| 30 | |
Amit Pundir | dd5bd1b | 2020-12-22 13:46:24 +0530 | [diff] [blame] | 31 | ifeq ($(TARGET_USES_BOOT_HDR_V3), true) |
| 32 | $(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk) |
| 33 | else |
Amit Pundir | 44f3990 | 2021-01-12 16:45:02 +0530 | [diff] [blame] | 34 | $(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk) |
Amit Pundir | dd5bd1b | 2020-12-22 13:46:24 +0530 | [diff] [blame] | 35 | endif |
Amit Pundir | 44f3990 | 2021-01-12 16:45:02 +0530 | [diff] [blame] | 36 | |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 37 | PRODUCT_COPY_FILES := \ |
John Stultz | f36354e | 2020-01-14 00:10:06 +0000 | [diff] [blame] | 38 | $(DB845C_KERNEL_DIR)/Image.gz:kernel \ |
| 39 | $(DB845C_KERNEL_DIR)/sdm845-db845c.dtb:dtb.img \ |
John Stultz | e53665e | 2020-10-06 05:33:49 +0000 | [diff] [blame] | 40 | device/linaro/dragonboard/fstab.common:$(TARGET_COPY_OUT_RAMDISK)/fstab.db845c \ |
Yongqin Liu | bbb804e | 2020-04-21 17:52:44 +0800 | [diff] [blame] | 41 | device/linaro/dragonboard/fstab.common:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.db845c \ |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 42 | device/linaro/dragonboard/init.common.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.db845c.rc \ |
| 43 | device/linaro/dragonboard/init.common.usb.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.db845c.usb.rc \ |
| 44 | device/linaro/dragonboard/common.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/db845c.kl |
| 45 | |
| 46 | # Build generic Audio HAL |
| 47 | PRODUCT_PACKAGES := audio.primary.db845c |
Amit Pundir | 3a69c9b | 2019-04-18 17:15:30 +0530 | [diff] [blame] | 48 | |
Yongqin Liu | af86a2d | 2020-10-21 10:24:53 +0800 | [diff] [blame] | 49 | # BootControl HAL |
| 50 | PRODUCT_PACKAGES += \ |
| 51 | android.hardware.boot@1.1-impl \ |
| 52 | android.hardware.boot@1.1-impl.recovery \ |
| 53 | android.hardware.boot@1.1-service |
| 54 | |
Amit Pundir | d477f82 | 2020-02-07 22:26:08 +0530 | [diff] [blame] | 55 | PRODUCT_PACKAGES += \ |
| 56 | pd-mapper \ |
Amit Pundir | ac5ab76 | 2020-07-09 10:43:01 +0530 | [diff] [blame] | 57 | qrtr-ns \ |
| 58 | qrtr-cfg \ |
Amit Pundir | d477f82 | 2020-02-07 22:26:08 +0530 | [diff] [blame] | 59 | qrtr-lookup \ |
| 60 | rmtfs \ |
| 61 | tqftpserv |
| 62 | |
John Stultz | 590ccad | 2020-02-26 20:23:14 +0000 | [diff] [blame] | 63 | PRODUCT_COPY_FILES += \ |
| 64 | device/linaro/dragonboard/qcom/init.qcom.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.qcom.rc |
| 65 | |
Amit Pundir | 7cc6a2d | 2020-04-23 21:39:03 +0530 | [diff] [blame] | 66 | # Install scripts to set Ethernet MAC address |
| 67 | PRODUCT_COPY_FILES += \ |
| 68 | $(LOCAL_PATH)/eth_mac_addr.rc:/system/etc/init/eth_mac_addr.rc \ |
| 69 | $(LOCAL_PATH)/eth_mac_addr.sh:/system/bin/eth_mac_addr.sh |
| 70 | |
Will McVicker | faa63a3 | 2021-04-06 10:50:27 -0700 | [diff] [blame] | 71 | PRODUCT_VENDOR_PROPERTIES += ro.soc.manufacturer=Qualcomm |
| 72 | PRODUCT_VENDOR_PROPERTIES += ro.soc.model=SDM845 |
| 73 | |
Amit Pundir | 3a69c9b | 2019-04-18 17:15:30 +0530 | [diff] [blame] | 74 | # Copy firmware files |
| 75 | $(call inherit-product-if-exists, $(LOCAL_PATH)/firmware/device.mk) |