summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher N. Hesse <raymanfx@gmail.com>2017-04-18 09:22:49 +0200
committerMichael Bestas <mkbestas@lineageos.org>2020-04-30 02:24:07 +0300
commit3eed52715078607f8a2901a0ad691c2544d63e41 (patch)
treeec88eff38e14d3a5e672ca3ea4b11e64850856ed
parent26f489134a24e06ae6949b768f1b3433f669e545 (diff)
sdm660-common: Enforce vendor tree presence
A compiled build has no chance of booting without the prebuilt binaries, so fail the build if those are not present. Change-Id: Iadd43e887d426732e549969ab8deb14194ca818d
-rw-r--r--BoardConfigCommon.mk2
-rw-r--r--sdm660.mk6
2 files changed, 4 insertions, 4 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk
index 73a9d11..00e36ed 100644
--- a/BoardConfigCommon.mk
+++ b/BoardConfigCommon.mk
@@ -206,4 +206,4 @@ WIFI_HIDL_FEATURE_DUAL_INTERFACE := true
WPA_SUPPLICANT_VERSION := VER_0_8_X
# Inherit the proprietary files
--include vendor/xiaomi/sdm660-common/BoardConfigVendor.mk
+include vendor/xiaomi/sdm660-common/BoardConfigVendor.mk
diff --git a/sdm660.mk b/sdm660.mk
index fccdf24..5a43a11 100644
--- a/sdm660.mk
+++ b/sdm660.mk
@@ -21,9 +21,6 @@
# definition file).
#
-# Inherit proprietary files
-$(call inherit-product, vendor/xiaomi/sdm660-common/sdm660-common-vendor.mk)
-
# Inherit properties
$(call inherit-product, $(LOCAL_PATH)/properties.mk)
PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE := true
@@ -466,3 +463,6 @@ PRODUCT_PACKAGES += \
PRODUCT_BOOT_JARS += \
WfdCommon
+
+# Inherit the proprietary files
+$(call inherit-product, vendor/xiaomi/sdm660-common/sdm660-common-vendor.mk)