Changes in tools/ew.py [917324b:56a3c29e] in mainline
- File:
-
- 1 edited
-
tools/ew.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tools/ew.py
r917324b r56a3c29e 79 79 for termemu in emus: 80 80 try: 81 subprocess.check_output('which ' + termemu, shell = True )81 subprocess.check_output('which ' + termemu, shell = True, stderr = subprocess.STDOUT) 82 82 return termemu 83 83 except: … … 331 331 def msim_run(platform, machine, processor): 332 332 hdisk_mk() 333 run_in_console('msim - c ' + TOOLS_DIR + '/conf/msim.conf', 'HelenOS/mips32 on msim')333 run_in_console('msim -n -c ' + TOOLS_DIR + '/conf/msim.conf', 'HelenOS/mips32 on msim') 334 334 335 335 def spike_run(platform, machine, processor): … … 422 422 'sun4v' : { 423 423 'run' : qemu_run, 424 'image' : '-drive if=pflash,readonly=on,file=image.iso', 424 # QEMU 8.0.0 ignores the 'file' argument and instead uses 'id', 425 # which defaults to 'pflash0', but can be changed to the same value 426 # as 'file' 427 'image' : '-drive if=pflash,id=image.iso,readonly=on,file=image.iso', 425 428 'audio' : False, 426 429 'console' : True,
Note:
See TracChangeset
for help on using the changeset viewer.
