[platform][qemu-virt] support cortex-a15 cpu as well

This commit is contained in:
Travis Geiselbrecht
2015-09-11 18:10:03 -07:00
parent 6e82ef9722
commit b52c27973a
5 changed files with 34 additions and 24 deletions

View File

@@ -36,8 +36,8 @@ if [ $DO_64BIT == 1 ]; then
QEMU="qemu-system-aarch64 -machine virt -cpu cortex-a53"
PROJECT="qemu-virt-a53-test"
else
QEMU="qemu-system-arm -machine vexpress-a9"
PROJECT="vexpress-a9-test"
QEMU="qemu-system-arm -machine virt -cpu cortex-a15"
PROJECT="qemu-virt-a15-test"
fi
ARGS=" -m 512 -kernel build-${PROJECT}/lk.elf -nographic"