Changeset 3f4c537a in mainline
- Timestamp:
- 2016-08-28T15:41:39Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a3e527c
- Parents:
- e98f1c3e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ew.py
re98f1c3e r3f4c537a 1 1 #!/usr/bin/env python 2 2 # 3 # Copyright (c) 2013 Jakub Jermar 3 # Copyright (c) 2013 Jakub Jermar 4 4 # All rights reserved. 5 5 # … … 180 180 if not is_override('dryrun'): 181 181 subprocess.call(cmdline, shell = True) 182 182 183 183 def ski_run(platform, machine, processor): 184 184 run_in_console('ski -i contrib/conf/ski.conf', 'HelenOS/ia64 on ski') … … 187 187 hdisk_mk() 188 188 run_in_console('msim -c contrib/conf/msim.conf', 'HelenOS/mips32 on msim') 189 190 def spike_run(platform, machine, processor): 191 run_in_console('spike image.boot', 'HelenOS/risvc64 on Spike') 189 192 190 193 def gem5_console_thread(): … … 253 256 'image' : 'image.iso', 254 257 'audio' : False 258 }, 259 'riscv64' : { 260 'run' : spike_run, 261 'image' : 'image.boot' 255 262 }, 256 263 'sparc64' : {
Note:
See TracChangeset
for help on using the changeset viewer.