gs201: exclude GNSS and vcd if BOARD_WITHOUT_RADIO

Bug: 235907074
Test: Boot and check cpif does not boot loop
Signed-off-by: Jonglin Lee <jonglin@google.com>
Change-Id: I9347b29f945c438d2d9c206d56cfa172891b5c18
This commit is contained in:
Jonglin Lee 2022-06-14 11:42:39 -07:00
parent 08424eca4c
commit dd8efd5509
2 changed files with 4 additions and 2 deletions

View file

@ -899,10 +899,10 @@ USE_EARLY_SEND_DEVICE_INFO := true
ifneq ($(BOARD_WITHOUT_RADIO),true)
$(call inherit-product-if-exists, vendor/samsung_slsi/telephony/$(BOARD_USES_SHARED_VENDOR_TELEPHONY)/common/device-vendor.mk)
endif
#GPS HAL
include device/google/gs201/gnss/device-gnss.mk
endif
BOARD_VENDOR_SEPOLICY_DIRS += device/google/gs201-sepolicy/gps
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit_only.mk)

View file

@ -1 +1,3 @@
PRODUCT_PACKAGES += vcd
ifneq ($(BOARD_WITHOUT_RADIO),true)
PRODUCT_PACKAGES += vcd
endif