diff options
author | Ahmad Rulim <personal@rulim34.dev> | 2022-11-14 08:56:04 +0700 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-05 22:04:15 +0530 |
commit | 8c2257dcc7e2200854165081f9c59d4a38ccdbad (patch) | |
tree | f8e432d636bbd2e001ddf41b41a81cb2b88d8ae9 | |
parent | c17874f2a5db03cb7567a02452fa6d9f6e229cfa (diff) |
veux: Nuke duplicated vendor include
Signed-off-by: Ahmad Rulim <personal@rulim34.dev>
-rw-r--r-- | device.mk | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -4,9 +4,6 @@ # SPDX-License-Identifier: Apache-2.0 # -# Inherit from vendor blobs -$(call inherit-product, vendor/xiaomi/veux/veux-vendor.mk) - # Installs gsi keys into ramdisk, to boot a developer GSI with verified boot. $(call inherit-product, $(SRC_TARGET_DIR)/product/developer_gsi_keys.mk) @@ -16,6 +13,9 @@ $(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk) # Enable virtual A/B OTA $(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk) +# Get non-open-source specific aspects +$(call inherit-product, vendor/xiaomi/veux/veux-vendor.mk) + # A/B AB_OTA_POSTINSTALL_CONFIG += \ RUN_POSTINSTALL_system=true \ @@ -531,6 +531,3 @@ PRODUCT_PACKAGES += \ PRODUCT_COPY_FILES += \ $(call find-copy-subdir-files,*,$(LOCAL_PATH)/wifi/,$(TARGET_COPY_OUT_VENDOR)/etc/wifi) - -# Inherit the proprietary files -include vendor/xiaomi/veux/veux-vendor.mk |