summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>2019-03-05 11:41:38 +0530
committerVijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>2019-03-05 11:50:45 +0530
commit86e10b15b3fc25d5ef96c2dd93447a641ce68364 (patch)
tree4555264f7af6c77d6f4d27daa304324a3a87677f
parent694498d9a0a8b48465d5b0ae891d2a00d83072f0 (diff)
kvm: use linux kernel image from /boot/ folder for kvm test
Linux kernel image for refinfra platforms is located in /boot/vmlinux-refinfra. Use this image for the kvm test. Change-Id: Iabefa95fefc0f7c64ef41b7a800249958d100242 Signed-off-by: Vijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>
-rwxr-xr-xsgi/kvm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sgi/kvm.sh b/sgi/kvm.sh
index 4f3379d..daa91ce 100755
--- a/sgi/kvm.sh
+++ b/sgi/kvm.sh
@@ -63,7 +63,7 @@ start_guest_os () {
-o ServerAliveCountMax=720 \
-o StrictHostKeyChecking=no \
-o UserKnownHostsFile=/dev/null root@$IP \
- './lkvm run -k Image -c 8 --irqchip gicv3 -p "console=ttyAMA0,115200 earlycon=uart,mmio,0x3f8 debug"' 2>&1 | tee $RESULT_OUTPUT_FOLDER/$GUEST_OS0_BOOT_LOG
+ './lkvm run -k /boot/vmlinux-refinfra -c 8 --irqchip gicv3 -p "console=ttyAMA0,115200 earlycon=uart,mmio,0x3f8 debug"' 2>&1 | tee $RESULT_OUTPUT_FOLDER/$GUEST_OS0_BOOT_LOG
RET=$?
return $RET
}