aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2017-11-22 18:29:54 +0200
committerFathi Boudra <fathi.boudra@linaro.org>2017-11-22 18:40:00 +0200
commit35f93cc757ea05baff2715a1f592e42a6e9ae6ea (patch)
treed9b099559f40e27cda413d0e5fe9761add1fb472
parentdb6227168a0020192383c554a49dd5eb2c6daf0c (diff)
openembedded-lkft: 410c: fix BOOT_IMG value
The current pattern is too restrictive and applies only to HiKey. Remove the "uefi" component to works also on 410c. Change-Id: I7c11b5f13426622b61a4d206154e7d924678d4d2 Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
-rwxr-xr-xopenembedded-lkft/builders.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/openembedded-lkft/builders.sh b/openembedded-lkft/builders.sh
index ec3fd66d4b..1757c2e318 100755
--- a/openembedded-lkft/builders.sh
+++ b/openembedded-lkft/builders.sh
@@ -305,7 +305,7 @@ done
SNAPSHOTS_URL=http://snapshots.linaro.org
BASE_URL=openembedded/lkft/${MANIFEST_BRANCH}/${MACHINE}/${DISTRO}/${PUB_DEST}/${BUILD_NUMBER}
-BOOT_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "boot-*-${MACHINE}-*-${BUILD_NUMBER}.uefi.img" | xargs -r basename)
+BOOT_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "boot-*-${MACHINE}-*-${BUILD_NUMBER}*.img" | xargs -r basename)
ROOTFS_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "rpb-console-image-${MACHINE}-*-${BUILD_NUMBER}.rootfs.img.gz" | xargs -r basename)
ROOTFS_TARXZ_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "rpb-console-image-${MACHINE}-*-${BUILD_NUMBER}.rootfs.tar.xz" | xargs -r basename)
KERNEL_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "*Image-*-${MACHINE}-*-${BUILD_NUMBER}.bin" | xargs -r basename)