diff options
author | LuK1337 <priv.luk@gmail.com> | 2023-06-23 16:07:35 +0200 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2023-08-16 15:56:54 +0800 |
commit | 0c3fa3bae6ca8fb9e16bdce64d340b304021b053 (patch) | |
tree | 8d21d99befbe8b9a48f9296013c70b6d50a4ab8c | |
parent | 2edd09c3f68b7451f0f96db37680c8654b2d86f3 (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 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/aosp_common.mk b/aosp_common.mk index 87243925..ce30f4f1 100644 --- a/aosp_common.mk +++ b/aosp_common.mk @@ -34,7 +34,11 @@ 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 +$(call inherit-product, frameworks/base/data/sounds/AudioPackage14.mk) # # All components inherited here go to vendor image |