1# 2# Copyright (C) 2022 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 17TARGET_KERNEL_DIR ?= device/linaro/dragonboard-kernel/android-$(TARGET_KERNEL_USE) 18 19TARGET_USES_GKI ?= true 20 21ifeq ($(TARGET_USES_GKI), true) 22 TARGET_MODS := $(wildcard $(TARGET_KERNEL_DIR)/*.ko) 23 ifneq ($(TARGET_MODS),) 24 BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES := true 25 BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(TARGET_MODS) 26 endif 27endif 28 29PRODUCT_SHIPPING_API_LEVEL := 31 30 31# Check vendor package version 32# If you need to make changes to the vendor partition, 33# please modify the source git project here: 34# https://staging-git.codelinaro.org/linaro/linaro-aosp/aosp-linaro-vendor-package 35include device/linaro/dragonboard/vendor-package-ver.mk 36ifneq (,$(wildcard $(LINARO_VENDOR_PATH)/db845c/$(EXPECTED_LINARO_VENDOR_VERSION)/version.mk)) 37 # Unfortunately inherit-product doesn't export build variables from the 38 # called make file to the caller, so we have to include it directly here. 39 include $(LINARO_VENDOR_PATH)/db845c/$(EXPECTED_LINARO_VENDOR_VERSION)/version.mk 40 ifneq ($(TARGET_LINARO_VENDOR_VERSION), $(EXPECTED_LINARO_VENDOR_VERSION)) 41 $(warning TARGET_LINARO_VENDOR_VERSION ($(TARGET_LINARO_VENDOR_VERSION)) does not match exiting the build ($(EXPECTED_LINARO_VENDOR_VERSION)).) 42 $(warning Please download and extract the new binaries by running the following script:) 43 $(warning ./device/linaro/dragonboard/fetch-vendor-package.sh ) 44 # Would be good to error out here, but that causes other issues 45 endif 46else 47 $(warning Missing Linaro Vendor Package!) 48 $(warning Please download and extract the vendor binaries by running the following script:) 49 $(warning ./device/linaro/dragonboard/fetch-vendor-package.sh ) 50 # Would be good to error out here, but that causes other issues 51endif 52 53PRODUCT_SOONG_NAMESPACES += \ 54 device/linaro/dragonboard \ 55 vendor/linaro/linux-firmware/$(EXPECTED_LINARO_VENDOR_VERSION) \ 56 vendor/linaro/db845c/$(EXPECTED_LINARO_VENDOR_VERSION) \ 57 vendor/linaro/rb5/$(EXPECTED_LINARO_VENDOR_VERSION) 58 59# Dynamic partitions 60PRODUCT_BUILD_SUPER_PARTITION := true 61PRODUCT_USE_DYNAMIC_PARTITIONS := true 62PRODUCT_USE_DYNAMIC_PARTITION_SIZE := true 63 64# Enable Virtual A/B 65AB_OTA_UPDATER := true 66AB_OTA_PARTITIONS += \ 67 product \ 68 system \ 69 system_ext \ 70 vendor 71 72PRODUCT_COPY_FILES += \ 73 $(TARGET_KERNEL_DIR)/Image.gz:kernel \ 74 device/linaro/dragonboard/fstab.common:$(TARGET_COPY_OUT_RAMDISK)/first_stage_ramdisk/fstab.$(TARGET_HARDWARE) \ 75 device/linaro/dragonboard/fstab.common:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.$(TARGET_HARDWARE) \ 76 device/linaro/dragonboard/init.common.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.$(TARGET_HARDWARE).rc \ 77 device/linaro/dragonboard/init.common.usb.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.$(TARGET_HARDWARE).usb.rc \ 78 frameworks/base/data/keyboards/Generic.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/$(TARGET_HARDWARE).kl 79