Changeset 8404342 in mainline


Ignore:
Timestamp:
2018-06-07T17:00:31Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Children:
9c16c36
Parents:
24fda5e
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-07 16:58:53)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-07 17:00:31)
Message:

tools/ew.py: understand -nographic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    r24fda5e r8404342  
    209209                cmdline += qemu_audio_options()
    210210
     211        if (is_override('nographic')):
     212                cmdline += ' -nographic'
     213
    211214        if cfg['image'] == 'image.iso':
    212215                cmdline += ' -boot d -cdrom image.iso'
     
    382385                elif sys.argv[i] == '-notablet':
    383386                        overrides['notablet'] = True
     387                elif sys.argv[i] == '-nographic':
     388                        overrides['nographic'] = True
    384389                elif sys.argv[i] == '-qemu_path' and i < len(sys.argv) - 1:
    385390                        expect_qemu = True
Note: See TracChangeset for help on using the changeset viewer.