source: mainline/contrib/conf/net-qe.bat@ 890af992

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 890af992 was 21580dd, checked in by Lukas Mejdrech <lukas@…>, 16 years ago

Merged with network branch svn://svn.helenos.org/HelenOS/branches/network revision 4759; ipc_share_* and ipc_data_* changed to async_*; client connection in module.c returns on IPC_M_PHONE_HUNGUP; * Qemu scripts renamed to net-qe.*; (the dp8390 does not respond)

  • Property mode set to 100644
File size: 920 bytes
Line 
1REM Start qemu on windows.
2REM tested with qemu-0.10.6-windows
3
4@ECHO OFF
5
6REM SDL_VIDEODRIVER=directx is faster than windib. But keyboard cannot work well.
7SET SDL_VIDEODRIVER=windib
8
9REM SDL_AUDIODRIVER=waveout or dsound can be used. Only if QEMU_AUDIO_DRV=sdl.
10SET SDL_AUDIODRIVER=dsound
11
12REM QEMU_AUDIO_DRV=dsound or fmod or sdl or none can be used. See qemu -audio-help.
13SET QEMU_AUDIO_DRV=dsound
14
15REM QEMU_AUDIO_LOG_TO_MONITOR=1 displays log messages in QEMU monitor.
16SET QEMU_AUDIO_LOG_TO_MONITOR=0
17
18REM PCI-based PC(default): -M pc
19REM ISA-based PC : -M isapc
20REM -M isapc is added for NE2000 ISA card.
21
22REM the -L argument should point to the qemu libraries
23
24set arguments=-L . -vga std -no-kqemu -M isapc -net nic,model=ne2k_isa -net user -redir udp:8080::8080 -redir udp:8081::8081 -redir tcp:8080::8080 -redir tcp:8081::8081 -boot d -cdrom image.iso
25
26qemu.exe %* %arguments%
Note: See TracBrowser for help on using the repository browser.