From 5a077b728c5f8b4c581dfbfadcaff1312739d319 Mon Sep 17 00:00:00 2001 From: Unnathi Chalicheemala Date: Wed, 15 Nov 2023 16:14:48 -0800 Subject: [PATCH] ARM: dts: msm: Add Sun dtb overlays to platform_map Dtbo overlays were not being built with the Bazel build system because they were not part of the platform map. Add them now. Change-Id: Icb88c76552e1ab7d0a0e0fa168ae91f87335be2f Signed-off-by: Unnathi Chalicheemala --- qcom/platform_map.bzl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/qcom/platform_map.bzl b/qcom/platform_map.bzl index 8e823860..49d8b58b 100644 --- a/qcom/platform_map.bzl +++ b/qcom/platform_map.bzl @@ -3,13 +3,28 @@ _platform_map = { "dtb_list": [ # keep sorted {"name": "sun.dtb"}, + { + "name": "sunp.dtb", + "apq": True, + }, + { + "name": "sunp-v2.dtb", + "apq": True, + }, {"name": "sun-v2.dtb"}, ], "dtbo_list": [ # keep sorted + {"name": "sun-cdp-kiwi-overlay.dtbo"}, + {"name": "sun-cdp-nfc-overlay.dtbo"}, {"name": "sun-cdp-overlay.dtbo"}, + {"name": "sun-cdp-v8-overlay.dtbo"}, + {"name": "sun-mtp-kiwi-overlay.dtbo"}, + {"name": "sun-mtp-nfc-overlay.dtbo"}, {"name": "sun-mtp-overlay.dtbo"}, + {"name": "sun-mtp-v8-overlay.dtbo"}, {"name": "sun-qrd-sku1-overlay.dtbo"}, + {"name": "sun-qrd-sku1-v8-overlay.dtbo"}, {"name": "sun-qrd-sku2-overlay.dtbo"}, {"name": "sun-rumi-overlay.dtbo"}, ],