blob: 8928c741b2774fa76b42175ce60bc0d6e8398c47 [file] [log] [blame]
Amit Pundirbd765d62024-03-08 22:31:43 +05301#
2# Copyright (C) 2024 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# setup dalvik vm configs
18$(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk)
19
20include $(LOCAL_PATH)/../vendor-package-ver.mk
21$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk)
22
23# dlkm_loader
24include device/linaro/dragonboard/shared/utils/dlkm_loader/device.mk
25PRODUCT_COPY_FILES += \
26 device/linaro/dragonboard/shared/utils/dlkm_loader/dlkm_loader.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dlkm_loader.rc
27
28# Build generic Audio HAL
29PRODUCT_PACKAGES += audio.primary.sm8x50
30
31# BootControl HAL
32PRODUCT_PACKAGES += \
33 android.hardware.boot@1.2-impl \
34 android.hardware.boot@1.2-impl.recovery \
35 android.hardware.boot@1.2-service
36
37# Set BT address
38PRODUCT_PACKAGES += bdaddr
39
40# Install bdaddr script
41PRODUCT_COPY_FILES += \
42 device/linaro/dragonboard/shared/utils/bdaddr/set_bdaddr.sh:$(TARGET_COPY_OUT_VENDOR)/bin/set_bdaddr.sh
43
44# Install scripts to set vendor.* properties
45PRODUCT_COPY_FILES += \
46 device/linaro/dragonboard/shared/utils/set_hw.sh:$(TARGET_COPY_OUT_VENDOR)/bin/set_hw.sh \
47 device/linaro/dragonboard/shared/utils/set_udc.sh:$(TARGET_COPY_OUT_VENDOR)/bin/set_udc.sh
48
49# Install scripts to set Ethernet MAC address
50PRODUCT_COPY_FILES += \
51 device/linaro/dragonboard/shared/utils/ethaddr/ethaddr.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ethaddr.rc \
52 device/linaro/dragonboard/shared/utils/ethaddr/set_ethaddr.sh:$(TARGET_COPY_OUT_VENDOR)/bin/set_ethaddr.sh
53
Amit Pundiref6d03d2024-04-13 23:52:27 +053054ifneq ($(TARGET_SDCARD_BOOT), true)
Amit Pundirbd765d62024-03-08 22:31:43 +053055PRODUCT_COPY_FILES += \
56 $(LOCAL_PATH)/fstab:$(TARGET_COPY_OUT_RAMDISK)/first_stage_ramdisk/fstab.sm8x50 \
57 $(LOCAL_PATH)/fstab:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.sm8x50
Amit Pundiref6d03d2024-04-13 23:52:27 +053058endif
Amit Pundirbd765d62024-03-08 22:31:43 +053059
60PRODUCT_VENDOR_PROPERTIES += \
61 ro.soc.manufacturer=Snapdragon 8 Gen Devboard \
62 ro.soc.model=SM8x50
63
64PRODUCT_SOONG_NAMESPACES += \
65 vendor/linaro/sm8x50/$(EXPECTED_LINARO_VENDOR_VERSION)
66
67# XXX until v4 support
68PRODUCT_COPY_FILES += \
69 device/linaro/dragonboard/shared/utils/dlkm_loader/vendor_ramdisk.modules.blocklist:$(TARGET_COPY_OUT_RAMDISK)/lib/modules/modules.blocklist
70
71# Copy firmware files
72$(call inherit-product-if-exists, vendor/linaro/sm8x50/$(EXPECTED_LINARO_VENDOR_VERSION)/device.mk)
73
74TARGET_HARDWARE := sm8x50
75TARGET_KERNEL_USE ?= mainline
76
77include device/linaro/dragonboard/device-common.mk