diff options
author | LuK1337 <priv.luk@gmail.com> | 2023-06-23 16:07:35 +0200 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2024-01-02 00:52:16 +0800 |
commit | c601ffff57d6336d4148ee39c8a6981f310734b5 (patch) | |
tree | 41043b38ad8718c92754db9fcfd0ed08afcb69aa | |
parent | f33f95d615b81d9b3e046b70b9cada9577a64722 (diff) |
gs201: don't inherit aosp_product.mk
This includes some unnecessary telephony bits and overrides.
Change-Id: Id75d9fd584a9981e756bb65a668ed526b4d1cd05
-rw-r--r-- | aosp_common.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/aosp_common.mk b/aosp_common.mk index 87243925..a45fd74d 100644 --- a/aosp_common.mk +++ b/aosp_common.mk @@ -34,7 +34,10 @@ endif # # All components inherited here go to product image # -$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_product.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/handheld_product.mk) +ifneq ($(BOARD_WITHOUT_RADIO),true) +$(call inherit-product, $(SRC_TARGET_DIR)/product/telephony_product.mk) +endif # # All components inherited here go to vendor image |