Changes in tools/ew.py [917324b:56a3c29e] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    r917324b r56a3c29e  
    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.