Changeset 868d75c in mainline
- Timestamp:
- 2018-07-15T07:27:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b5d37a
- Parents:
- 710c1e9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ew.py
r710c1e9 r868d75c 214 214 cmdline += qemu_audio_options() 215 215 216 console = ('console' in cfg.keys() and cfg['console']) 217 216 218 if (is_override('nographic')): 217 219 cmdline += ' -nographic' 218 220 219 if ( (not is_override('nographic')) and not is_override('noserial')):221 if (not console and (not is_override('nographic')) and not is_override('noserial')): 220 222 cmdline += ' -serial stdio' 221 223 … … 230 232 cmdline += ' ' + cfg['image'] 231 233 232 if ('console' in cfg.keys()) and not cfg['console']:234 if console: 233 235 cmdline += ' -nographic' 234 236 … … 285 287 'run' : qemu_run, 286 288 'image' : 'image.boot', 287 'console' : False289 'console' : True 288 290 }, 289 291 'bmalta' : { 290 292 'run' : qemu_run, 291 293 'image' : 'image.boot', 292 'console' : False294 'console' : True 293 295 }, 294 296 }, … … 308 310 'image' : 'image.iso', 309 311 'audio' : False, 310 'console' : False,312 'console' : True, 311 313 'net' : False, 312 314 'usb' : False, … … 318 320 'image' : '-drive if=pflash,readonly=on,file=image.iso', 319 321 'audio' : False, 320 'console' : False,322 'console' : True, 321 323 'net' : False, 322 324 'usb' : False,
Note:
See TracChangeset
for help on using the changeset viewer.