Changes in / [d4d8255:dc0e41c] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    rd4d8255 rdc0e41c  
    3838import autotool
    3939import platform
    40 import thread
    41 import time
    4240
    4341overrides = {}
     
    4846        return False
    4947
    50 def cfg_get(platform, machine, processor):
    51         if machine == "" or emulators[platform].has_key("run"):
     48def cfg_get(platform, machine):
     49        if machine == "":
    5250                return emulators[platform]
    53         elif processor == "" or emulators[platform][machine].has_key("run"):
     51        else:
    5452                return emulators[platform][machine]
    55         else:
    56                 return emulators[platform][machine][processor]
    5753
    5854def run_in_console(cmd, title):
     
    146142        return ' -device intel-hda -device hda-duplex'
    147143
    148 def qemu_run(platform, machine, processor):
    149         cfg = cfg_get(platform, machine, processor)
     144def qemu_run(platform, machine):
     145        cfg = cfg_get(platform, machine)
    150146        suffix, options = platform_to_qemu_options(platform, machine)
    151147        cmd = 'qemu-' + suffix
     
    181177                        subprocess.call(cmdline, shell = True)
    182178               
    183 def ski_run(platform, machine, processor):
     179def ski_run(platform, machine):
    184180        run_in_console('ski -i contrib/conf/ski.conf', 'HelenOS/ia64 on ski')
    185181
    186 def msim_run(platform, machine, processor):
     182def msim_run(platform, machine):
    187183        hdisk_mk()
    188184        run_in_console('msim -c contrib/conf/msim.conf', 'HelenOS/mips32 on msim')
    189185
    190 def gem5_console_thread():
    191         # Wait a little bit so that gem5 can create the port
    192         time.sleep(1)
    193         term = os.environ['M5_PATH'] + '/gem5/util/term/m5term'
    194         port = 3457
    195         run_in_console(term + ' %d' % port, 'HelenOS/sun4v on gem5')
    196 
    197 def gem5_run(platform, machine, processor):
    198         try:
    199                 gem5 = os.environ['M5_PATH'] + '/gem5/build/SPARC/gem5.fast'
    200                 if not os.path.exists(gem5):
    201                         raise Exception
    202         except:
    203                 print("Did you forget to set M5_PATH?")
    204                 raise
    205 
    206         thread.start_new_thread(gem5_console_thread, ())
    207 
    208         cmdline = gem5 + ' ' + os.environ['M5_PATH'] + '/configs/example/fs.py --disk-image=' + os.path.abspath('image.iso')
    209 
    210         print(cmdline)
    211         if not is_override('dry_run'):
    212                 subprocess.call(cmdline, shell = True)
    213186
    214187emulators = {
     
    256229        'sparc64' : {
    257230                'generic' : {
    258                         'us' : {
    259                                 'run' : qemu_run,
    260                                 'image' : 'image.iso',
    261                                 'audio' : False
    262                         },
    263                         'sun4v' : {
    264                                 'run' : gem5_run,
    265                         }
     231                        'run' : qemu_run,
     232                        'image' : 'image.iso',
     233                        'audio' : False
    266234                }
    267235        },
     
    279247        print("-nosnd\tDisable sound, if applicable.")
    280248        print("-nousb\tDisable USB support, if applicable.")
    281 
    282 def fail(platform, machine):
    283         print("Cannot start emulation for the chosen configuration. (%s/%s)" % (platform, machine))
    284        
    285249
    286250def run():
     
    337301                mach = ''
    338302
    339         if 'PROCESSOR' in config.keys():
    340                 processor = config['PROCESSOR']
    341         else:
    342                 processor = ''
    343 
    344303        try:
    345                 emu_run = cfg_get(platform, mach, processor)['run']
    346                 emu_run(platform, mach, processor)
     304                emu_run = cfg_get(platform, mach)['run']
    347305        except:
    348                 fail(platform, mach)
     306                print("Cannot start emulation for the chosen configuration. (%s/%s)" % (platform, mach))
    349307                return
    350308
     309        emu_run(platform, mach)
     310
    351311run()
Note: See TracChangeset for help on using the changeset viewer.