summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2023-03-01 19:18:19 +0200
committerIlias Apalodimas <ilias.apalodimas@linaro.org>2023-03-01 19:18:19 +0200
commit4812fbdbb090a8f9f0dfa8c2ddd1cd97c4bb8ca9 (patch)
tree95f09c637f8b80350df478eea5d4bef8bdf4eebf
parentfedba21cf6734acc91b8010c940cca1958cb9793 (diff)
sr-ir: switch to meta-ts u-boot binaryHEADmaster
Instead of using the latest upstream u-boot, use the latest meta-ts built Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rwxr-xr-xscripts/sr-ir.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/sr-ir.sh b/scripts/sr-ir.sh
index 61d2b94..7ad9b99 100755
--- a/scripts/sr-ir.sh
+++ b/scripts/sr-ir.sh
@@ -15,14 +15,14 @@ log="$log_file_part"'.log'
wget "$acs_url"
unxz $acs_img
acs_img='ir-acs-live-image-generic-arm64.wic'
-wget http://snapshots.linaro.org/components/ledge/uboot/latest/u-boot.aarch64.bin
+wget $UBOOT -O flash.bin
# Ordering matters here keep variables.img first
tmux new-session -d -s qemu \
"qemu-system-aarch64 \
- -bios u-boot.aarch64.bin \
- -machine virt,secure=off \
- -cpu cortex-a57 -m 8G \
+ -bios flash.bin \
+ -machine virt,secure=on \
+ -cpu cortex-a57 -m 2G \
-nographic -no-acpi \
-drive id=disk0,file=$acs_img,if=none,format=raw \
-device virtio-blk-device,drive=disk0"