aboutsummaryrefslogtreecommitdiff
path: root/lkft-staging-no-skiplist.yaml
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@linaro.org>2018-01-03 17:29:35 +0000
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2018-01-03 17:29:35 +0000
commit76bd7f81c7bc6c5b6303d85b4b98acbe91c8c42c (patch)
tree749b0e30acd03dc18cda8a91f3ea24719731c504 /lkft-staging-no-skiplist.yaml
parenta35c1c620d2099e5e9cfa554d7147cfebec5133d (diff)
lkft-staging: start running tests on b2260
Change-Id: I471d45ebe1eab3674a980e8017a0582ee60d1f6e Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
Diffstat (limited to 'lkft-staging-no-skiplist.yaml')
-rw-r--r--lkft-staging-no-skiplist.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/lkft-staging-no-skiplist.yaml b/lkft-staging-no-skiplist.yaml
index 551c7c53e9..414060a63a 100644
--- a/lkft-staging-no-skiplist.yaml
+++ b/lkft-staging-no-skiplist.yaml
@@ -46,6 +46,7 @@
- 'x86'
- 'juno-r2'
- 'x15'
+ - 'b2260'
execution-strategy:
sequential: false
wrappers:
@@ -84,6 +85,9 @@
x86)
export MACHINE=intel-core2-32
;;
+ b2260)
+ export MACHINE=stih410-b2260
+ ;;
*)
;;
esac
@@ -112,11 +116,17 @@
KERNEL_FILENAME=$(grep -E "bzImage" "${MD5_FILENAME}" | awk '{print $2}')
JUNO_KERNEL_FILENAME=$(grep -E "Image.*.bin" "${MD5_FILENAME}" | awk '{print $2}')
JUNO_DTB_FILENAME=$(grep -E "Image.*juno-r2.*.dtb" "${MD5_FILENAME}" | awk '{print $2}')
+ B2260_KERNEL_FILENAME=$(grep -E "uImage.*.bin" "${MD5_FILENAME}" | awk '{print $2}')
+ B2260_DTB_FILENAME=$(grep -E "uImage.*.dtb" "${MD5_FILENAME}" | awk '{print $2}')
case ${DEVICE_TYPE} in
juno-r2)
export KERNEL_URL="${BUILD_LOCATION}/${JUNO_KERNEL_FILENAME}"
export DTB_URL="${BUILD_LOCATION}/${JUNO_DTB_FILENAME}"
;;
+ b2260)
+ export KERNEL_URL="${BUILD_LOCATION}/${B2260_KERNEL_FILENAME}"
+ export DTB_URL="${BUILD_LOCATION}/${B2260_DTB_FILENAME}"
+ ;;
*)
export KERNEL_URL="${BUILD_LOCATION}/${KERNEL_FILENAME}"
;;