diff options
author | 2019-01-24 17:53:09 +0100 | |
---|---|---|
committer | 2019-01-27 22:38:45 +0100 | |
commit | 0203df36ac5ab7d2e7a7fad94edaa51594360f34 (patch) | |
tree | 7b81f728cf06435c6a39eb925a609b3fd15d62e1 /board/qemu | |
parent | e25040d31a8d50c3c523f78f43ba1f557269b3bb (diff) | |
download | buildroot-0203df36ac5ab7d2e7a7fad94edaa51594360f34.tar.gz buildroot-0203df36ac5ab7d2e7a7fad94edaa51594360f34.tar.bz2 |
qemu/aarch64-virt: Emulate cortex-a53 in qemu to match Buildroot config
qemu_aarch64_virt_defconfig (implicitly) specifies cortex-a53, so adjust the
QEMU command line to also emulate a a53 instead of a57.
Also adjust the defconfig to explicitly specify a53 for consistency/clarity.
Signed-off-by: Gerome Burlats <gerome.burlats@smile.fr>
Cc: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'board/qemu')
-rw-r--r-- | board/qemu/aarch64-virt/readme.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/qemu/aarch64-virt/readme.txt b/board/qemu/aarch64-virt/readme.txt index 76fc2d6f32..1ff2fba47d 100644 --- a/board/qemu/aarch64-virt/readme.txt +++ b/board/qemu/aarch64-virt/readme.txt @@ -1,6 +1,6 @@ Run the emulation with: - qemu-system-aarch64 -M virt -cpu cortex-a57 -nographic -smp 1 -kernel output/images/Image -append "root=/dev/vda console=ttyAMA0" -netdev user,id=eth0 -device virtio-net-device,netdev=eth0 -drive file=output/images/rootfs.ext4,if=none,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 + qemu-system-aarch64 -M virt -cpu cortex-a53 -nographic -smp 1 -kernel output/images/Image -append "root=/dev/vda console=ttyAMA0" -netdev user,id=eth0 -device virtio-net-device,netdev=eth0 -drive file=output/images/rootfs.ext4,if=none,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 The login prompt will appear in the terminal that started Qemu. |