Changes between Version 62 and Version 63 of Developer/Simulators/QEMU


Ignore:
Timestamp:
06/19/16 22:48:24 (7 years ago)
Author:
Chris Johns
Comment:

Add -append details for the -kernel option.

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Simulators/QEMU

    v62 v63  
    253253{{{
    254254qemu-system-i386 -kernel hello/hello.exe
     255}}}
     256
     257The i386 supports boot options appended to the kernel to control the console, IDE probing and more. You can add options to the boot command line using the `-append` option:
     258
     259{{{
     260qemu-system-i386 -kernel hello/hello.exe \
     261      -vga cirrus \
     262      -net nic,vlan=0,model=e1000 -net user,vlan=0 \
     263      -append "--console=/dev/com1" \
     264      -serial stdio
    255265}}}
    256266