Changes between Version 16 and Version 17 of UsersGuide/RunningInQEMU


Ignore:
Timestamp:
2016-04-20T13:35:57Z (8 years ago)
Author:
Jakub Jermář
Comment:

Be more specific as for what machines are being emulated.

Legend:

Unmodified
Added
Removed
Modified
  • UsersGuide/RunningInQEMU

    v16 v17  
    3434=== arm32 ===
    3535
     36QEMU can emulate Integrator/CP. For an `image.boot` built for '''arm32/integratorcp''' profile, do:
     37
    3638{{{
    3739qemu-system-arm -kernel image.boot
     
    4648=== sparc64 ===
    4749
     50QEMU can emulate a sun4u machine somewhat similar to Ultra 5. For an `image.iso` built for the '''sparc64/ultra''' profile, do:
     51
    4852{{{
    4953qemu-system-sparc64 -cdrom image.iso -boot d
     
    5256=== mips32 ===
    5357
    54 HelenOS has limited support for MIPS Malta.
     58QEMU can emulate MIPS Malta and HelenOS has limited support for it.
    5559
    56 Big-endian Malta:
     60For big-endian Malta, do:
    5761
    5862{{{
     
    6064}}}
    6165
    62 Little-endian Malta:
     66For little-endian Malta, do:
    6367{{{
    6468qemu-system-mipsel -cpu 4Kc -kernel image.boot -nographic
    6569}}}
     70
     71`image.boot` is the image built for the '''mips32/malte-be''' or '''mips32/malta-le''' profiles, respectively.
    6672
    6773== KVM ==
     
    97103=== Using user mode network stack ===
    98104
    99 To activate user mode network stack, add `-net user` option to qemu command line. QEMU will then create a virtual network `10.0.2.0/24`. You may use `10.0.2.15` as the IP for the guest computer. To redirect traffic to guest network use `-redir` option:
     105To activate user mode network stack, add `-net user` option to QEMU command line. QEMU will then create a virtual network `10.0.2.0/24`. You may use `10.0.2.15` as the IP for the guest computer. To redirect traffic to guest network use `-redir` option:
    100106
    101107{{{