aboutsummaryrefslogtreecommitdiff
path: root/android-lcr
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2019-06-14 14:53:26 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2019-06-14 14:53:26 +0800
commit42c4d68e10b3df1086077949c9b07a0c8774ceb2 (patch)
tree5cd6c49c5956607b1f9d2ecc0ebf2ddde6a47490 /android-lcr
parent9fff408a32dfde580566115c3aa4c3f6e5b2fb02 (diff)
android-lcr: fix hikey 4.4 vendor.img building problem
need to set TARGET_COMPRESSED_KERNEL to true for the error 12:18:05 ninja: error: 'device/linaro/hikey-kernel/Image-dtb-4.4', needed by 'out/target/product/hikey/kernel', missing and no known rule to make it reported here: https://ci.linaro.org/job/android-lcr-reference-hikey-p/137/console Change-Id: I2aa73e7559b1faeb3c8c289ef94c03e8726771ce Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
Diffstat (limited to 'android-lcr')
-rwxr-xr-xandroid-lcr/hikey/builders-v2.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/android-lcr/hikey/builders-v2.sh b/android-lcr/hikey/builders-v2.sh
index 7da970e2..3775b157 100755
--- a/android-lcr/hikey/builders-v2.sh
+++ b/android-lcr/hikey/builders-v2.sh
@@ -44,7 +44,7 @@ if [ "X${BUILD_VENDOR_FOR_4_4}" = "Xtrue" ]; then
source build/envsetup.sh
lunch hikey-userdebug
rm -rf out/target/product/hikey/vendor*
- make vendorimage TARGET_KERNEL_USE=4.4 TARGET_COMPRESSED_KERNEL=false TARGET_BUILD_KERNEL=false HIKEY_USE_DRM_HWCOMPOSER=false
+ make vendorimage TARGET_KERNEL_USE=4.4 TARGET_COMPRESSED_KERNEL=true TARGET_BUILD_KERNEL=false HIKEY_USE_DRM_HWCOMPOSER=false
cp out/target/product/hikey/vendor.img out/vendor-4.4.img
xz out/vendor-4.4.img
cd -