qemuarm.conf 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. #@TYPE: Machine
  2. #@NAME: QEMU Arm Cortex-A15 machine
  3. #@DESCRIPTION: Machine configuration for running an ARMv7 system on QEMU
  4. require conf/machine/include/tune-cortexa15.inc
  5. require conf/machine/include/qemu.inc
  6. KERNEL_IMAGETYPE = "zImage"
  7. UBOOT_MACHINE ?= "qemu_arm_defconfig"
  8. SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0"
  9. SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
  10. # For runqemu
  11. QB_SYSTEM_NAME = "qemu-system-arm"
  12. QB_MACHINE = "-machine virt,highmem=off"
  13. QB_CPU = "-cpu cortex-a15"
  14. # Standard Serial console
  15. QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0"
  16. # For graphics to work we need to define the VGA device as well as the necessary USB devices
  17. QB_OPT_APPEND = "-device VGA,edid=on"
  18. QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd"
  19. # Virtio Networking support
  20. QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no"
  21. QB_NETWORK_DEVICE = "-device virtio-net-device,netdev=net0,mac=@MAC@"
  22. # Virtio block device
  23. QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0"
  24. # Virtio serial console
  25. QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon"
  26. QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"
  27. KMACHINE_qemuarm = "qemuarma15"