summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2018-06-28 12:45:20 -0700
committerJohn Stultz <john.stultz@linaro.org>2018-06-28 12:52:42 -0700
commit221be176e245ec9deb22d6cba799777b4e9c8e3e (patch)
treeef3912a0bedeb6ef633b197136465de1540b7c68
parent531fb4c307e7b5f5791ee4a60487c20c18cebcfc (diff)
downloadhikey-221be176e245ec9deb22d6cba799777b4e9c8e3e.tar.gz
hikey960: Add version check on the hisi vdec package
This adds a version check on the hisi vdec package and provides a URL to the current expected package. This did get a bit hacky as we can't check values set in the vendor pkg makefile if we use inherit-product. So we have to include it directly. I think we could do it better, but we would have to re-spin the published vendor binary, so lets hack around it this time and do better with the next package update. Change-Id: Ic6832850e9b4d03b84358060810aa17e23e5b8ae Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r--hikey960/device-hikey960.mk16
1 files changed, 15 insertions, 1 deletions
diff --git a/hikey960/device-hikey960.mk b/hikey960/device-hikey960.mk
index d59b3f3d..f96d77af 100644
--- a/hikey960/device-hikey960.mk
+++ b/hikey960/device-hikey960.mk
@@ -54,4 +54,18 @@ PRODUCT_PACKAGES += power.hikey960
PRODUCT_PACKAGES += sensors.hikey960
-$(call inherit-product-if-exists, vendor/linaro/hikey960/device-vendor.mk)
+# Unfortunately inherit-product doesn't export build variables from the
+# called make file to the caller, so we have to include it directly here.
+# FIXME: Improve this the next time we update the binary package
+ifneq (,$(wildcard vendor/linaro/hikey960/hisilicon/device-partial.mk))
+include vendor/linaro/hikey960/hisilicon/device-partial.mk
+endif
+
+EXPECTED_HISI_CODEC_VERSION := 1
+# Check and make sure the vendor package is the expected version
+ifneq ($(TARGET_HISI_CODEC_VERSION),$(EXPECTED_HISI_CODEC_VERSION))
+$(warning TARGET_HISI_CODEC_VERSION ($(TARGET_HISI_CODEC_VERSION)) does not match exiting the build ($(EXPECTED_HISI_CODEC_VERSION)).)
+$(warning Please download new binaries here:)
+$(warning https://dl.google.com/dl/android/aosp/hisilicon-hikey960-OPR-3c243263.tgz )
+$(warning And extract in the ANDROID_TOP_DIR)
+endif