Changeset dc5c303 in mainline for tools/ew.py
- Timestamp:
- 2023-12-28T13:59:23Z (14 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ew.py
r42c2e65 rdc5c303 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.