Commit 65f5db58 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

We should use Cortex A53 for ARMv8 builds as QEMU supports KVM for it

parent f0ca31a4
...@@ -221,14 +221,14 @@ ...@@ -221,14 +221,14 @@
<target name="run-system-armv8"> <target name="run-system-armv8">
<exec executable="qemu-system-aarch64"> <exec executable="qemu-system-aarch64">
<env key="QEMU_AUDIO_DRV" value="none"/> <env key="QEMU_AUDIO_DRV" value="none"/>
<arg line=" -kernel ${builddir}/boot/vmlinuz -cpu cortex-a57 ${ENABLE_KVM_AARCH64} -m 1024 -M virt -no-reboot -append &quot;console=${CONSOLE} root=/dev/${DISK}2 rootwait panic=1 rootfstype=ext4 rootflags=discard rw systemd.unit=rescue.target net.ifnames=0&quot; -device sdhci-pci -drive format=raw,file=${builddir}/disk.img,if=none,id=disk,cache=writeback,discard=unmap -device sd-card,drive=disk -device virtio-rng-pci -nographic"/> <arg line=" -kernel ${builddir}/boot/vmlinuz -cpu cortex-a53 ${ENABLE_KVM_AARCH64} -m 1024 -M virt -no-reboot -append &quot;console=${CONSOLE} root=/dev/${DISK}2 rootwait panic=1 rootfstype=ext4 rootflags=discard rw systemd.unit=rescue.target net.ifnames=0&quot; -device sdhci-pci -drive format=raw,file=${builddir}/disk.img,if=none,id=disk,cache=writeback,discard=unmap -device sd-card,drive=disk -device virtio-rng-pci -nographic"/>
</exec> </exec>
</target> </target>
<target name="run-system-with-secondary-armv8"> <target name="run-system-with-secondary-armv8">
<exec executable="qemu-system-aarch64"> <exec executable="qemu-system-aarch64">
<env key="QEMU_AUDIO_DRV" value="none"/> <env key="QEMU_AUDIO_DRV" value="none"/>
<arg line=" -kernel ${builddir}/boot/vmlinuz -cpu cortex-a57 ${ENABLE_KVM_AARCH64} -m 1024 -M virt -no-reboot -append &quot;console=${CONSOLE} root=/dev/${DISK}2 rootwait panic=1 rootfstype=ext4 rootflags=discard rw systemd.unit=rescue.target net.ifnames=0&quot; -device sdhci-pci -drive format=raw,file=${builddir}/disk.img,if=none,id=disk,cache=writeback,discard=unmap -device sd-card,drive=disk -device sdhci-pci -drive format=raw,file=${builddir}/secondary.img,if=none,id=secondary,cache=writeback,discard=unmap -device sd-card,drive=secondary -device virtio-rng-pci -nographic"/> <arg line=" -kernel ${builddir}/boot/vmlinuz -cpu cortex-a53 ${ENABLE_KVM_AARCH64} -m 1024 -M virt -no-reboot -append &quot;console=${CONSOLE} root=/dev/${DISK}2 rootwait panic=1 rootfstype=ext4 rootflags=discard rw systemd.unit=rescue.target net.ifnames=0&quot; -device sdhci-pci -drive format=raw,file=${builddir}/disk.img,if=none,id=disk,cache=writeback,discard=unmap -device sd-card,drive=disk -device sdhci-pci -drive format=raw,file=${builddir}/secondary.img,if=none,id=secondary,cache=writeback,discard=unmap -device sd-card,drive=secondary -device virtio-rng-pci -nographic"/>
</exec> </exec>
</target> </target>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment