Changes between Version 62 and Version 63 of Developer/Simulators/QEMU
- Timestamp:
- 06/19/16 22:48:24 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developer/Simulators/QEMU
v62 v63 253 253 {{{ 254 254 qemu-system-i386 -kernel hello/hello.exe 255 }}} 256 257 The 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 {{{ 260 qemu-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 255 265 }}} 256 266