From 45743ca6ac88e6d2d892424ff7c05be2064d25ec Mon Sep 17 00:00:00 2001 From: Artem Smirnov Date: Fri, 21 Sep 2018 19:39:37 +0300 Subject: [PATCH] image_builder: change get_new_image to get_image --- image_builder/build.sh | 2 +- image_builder/{get_new_image.sh => get_image.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename image_builder/{get_new_image.sh => get_image.sh} (100%) diff --git a/image_builder/build.sh b/image_builder/build.sh index b7ad6a4c..a2428307 100755 --- a/image_builder/build.sh +++ b/image_builder/build.sh @@ -32,7 +32,7 @@ git clone ${TARGET_REPO} --single-branch --branch ${TARGET_REF} --depth 1 ${REPO export IMAGE_VERSION="${TARGET_REF}_$(date '+%Y%m%d_%H%M%S')" export IMAGE_PATH="$(pwd)/image/$(basename -s ".git" ${TARGET_REPO})_${IMAGE_VERSION}.img" -./get_new_image.sh ${IMAGE_PATH} $(jq '.source_image' -r ${TARGET_CONFIG}) +./get_image.sh ${IMAGE_PATH} $(jq '.source_image' -r ${TARGET_CONFIG}) REGISTER=':arm:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-arm-static:' if [[ $(arch) != 'armv7l' ]]; then diff --git a/image_builder/get_new_image.sh b/image_builder/get_image.sh similarity index 100% rename from image_builder/get_new_image.sh rename to image_builder/get_image.sh