From af6e3c040223f3dfa5ac3e8b684b16a37d9a078c Mon Sep 17 00:00:00 2001 From: John Stultz Date: Wed, 2 Feb 2022 04:37:53 +0000 Subject: hikey960/hikey: Transition to using to vendor-package Moves the bootloader objects, and mali libraries to the vendor package and adds the support files, tweaking the flash-all.sh script Will use the vendor-package located here: https://releases.linaro.org/android/aosp-linaro-vendor-package/extract-linaro_devices-20220210.tgz Signed-off-by: John Stultz Change-Id: I5e22c28c6f2c9ce3a7ec42e72411192dfbb6b312 --- vendor-package-ver.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 vendor-package-ver.sh (limited to 'vendor-package-ver.sh') diff --git a/vendor-package-ver.sh b/vendor-package-ver.sh new file mode 100755 index 00000000..12f4a6f0 --- /dev/null +++ b/vendor-package-ver.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +export EXPECTED_LINARO_VENDOR_VERSION=20220210 +export EXPECTED_LINARO_VENDOR_SHA=75efc8471f299f64716140712c0785b8e8aeaf5aa7e389a6f12f78ad4962420740da32f4535d795006e78c5f0b77a1cee8c168192a87f668103c00d87d480e6d +export VND_PKG_URL=https://releases.linaro.org/android/aosp-linaro-vendor-package/extract-linaro_devices-20220210.tgz + +if [ "$1" = "url" ]; then + echo $VND_PKG_URL +elif [ "$1" = "ver" ]; then + echo $EXPECTED_LINARO_VENDOR_VERSION +elif [ "$1" = "sha" ]; then + echo $EXPECTED_LINARO_VENDOR_SHA +fi -- cgit v1.2.3 From e5d9bba726b715b58bbce26e36faa00278c0377e Mon Sep 17 00:00:00 2001 From: Steve Muckle Date: Wed, 16 Feb 2022 05:56:08 +0000 Subject: Revert "hikey960/hikey: Transition to using to vendor-package" This reverts commit af6e3c040223f3dfa5ac3e8b684b16a37d9a078c. Reason for revert: broke build_test target, b/219798815 Change-Id: I22cfd1321d22b1f03e7e12a781a94886871faa18 --- vendor-package-ver.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 vendor-package-ver.sh (limited to 'vendor-package-ver.sh') diff --git a/vendor-package-ver.sh b/vendor-package-ver.sh deleted file mode 100755 index 12f4a6f0..00000000 --- a/vendor-package-ver.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -export EXPECTED_LINARO_VENDOR_VERSION=20220210 -export EXPECTED_LINARO_VENDOR_SHA=75efc8471f299f64716140712c0785b8e8aeaf5aa7e389a6f12f78ad4962420740da32f4535d795006e78c5f0b77a1cee8c168192a87f668103c00d87d480e6d -export VND_PKG_URL=https://releases.linaro.org/android/aosp-linaro-vendor-package/extract-linaro_devices-20220210.tgz - -if [ "$1" = "url" ]; then - echo $VND_PKG_URL -elif [ "$1" = "ver" ]; then - echo $EXPECTED_LINARO_VENDOR_VERSION -elif [ "$1" = "sha" ]; then - echo $EXPECTED_LINARO_VENDOR_SHA -fi -- cgit v1.2.3 From ec36f2d62fe5ce2b76e1ee51d3656455480831ac Mon Sep 17 00:00:00 2001 From: John Stultz Date: Wed, 2 Feb 2022 04:37:53 +0000 Subject: hikey960/hikey: Re-transition to using to vendor-package Moves the bootloader objects, and mali libraries to the vendor package and adds the support files, tweaking the flash-all.sh script Will use the vendor-package located here: https://releases.linaro.org/android/aosp-linaro-vendor-package/extract-linaro_devices-20220210.tgz Previously this patch was reverted, as there would be build errors when the vendor pacakge was missing. This patch re-applies the earlier change, with some additional fixes to ensure we don't see build trouble when the package is missing. Signed-off-by: John Stultz Change-Id: I53ec5516d91391c0d3f18c801e730eff150076af --- vendor-package-ver.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 vendor-package-ver.sh (limited to 'vendor-package-ver.sh') diff --git a/vendor-package-ver.sh b/vendor-package-ver.sh new file mode 100755 index 00000000..12f4a6f0 --- /dev/null +++ b/vendor-package-ver.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +export EXPECTED_LINARO_VENDOR_VERSION=20220210 +export EXPECTED_LINARO_VENDOR_SHA=75efc8471f299f64716140712c0785b8e8aeaf5aa7e389a6f12f78ad4962420740da32f4535d795006e78c5f0b77a1cee8c168192a87f668103c00d87d480e6d +export VND_PKG_URL=https://releases.linaro.org/android/aosp-linaro-vendor-package/extract-linaro_devices-20220210.tgz + +if [ "$1" = "url" ]; then + echo $VND_PKG_URL +elif [ "$1" = "ver" ]; then + echo $EXPECTED_LINARO_VENDOR_VERSION +elif [ "$1" = "sha" ]; then + echo $EXPECTED_LINARO_VENDOR_SHA +fi -- cgit v1.2.3