Changeset dc5c303 in mainline for tools/ew.py


Ignore:
Timestamp:
2023-12-28T13:59:23Z (14 months ago)
Author:
GitHub <noreply@…>
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)
Message:

Merge branch 'master' into topic/packet-capture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    r42c2e65 rdc5c303  
    7979        for termemu in emus:
    8080                try:
    81                         subprocess.check_output('which ' + termemu, shell = True)
     81                        subprocess.check_output('which ' + termemu, shell = True, stderr = subprocess.STDOUT)
    8282                        return termemu
    8383                except:
     
    331331def msim_run(platform, machine, processor):
    332332        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')
    334334
    335335def spike_run(platform, machine, processor):
     
    422422                        'sun4v' : {
    423423                                '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',
    425428                                'audio' : False,
    426429                                'console' : True,
Note: See TracChangeset for help on using the changeset viewer.