Changeset 693e4cf in mainline


Ignore:
Timestamp:
2024-04-17T20:47:02Z (2 weeks ago)
Author:
GitHub <noreply@…>
Parents:
522eecf (diff), e9c1639 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Parth Patel <parth1020patel@…> (2024-04-17 20:47:02)
git-committer:
GitHub <noreply@…> (2024-04-17 20:47:02)
Message:

Merge e9c163920855901461396bd1009584b897c18dd0 into 522eecf2e7a8efe0c2e371007898fcb15dccdfa1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    r522eecf r693e4cf  
    263263        suffix, options = platform_to_qemu_options(platform, machine, processor)
    264264        cmd = 'qemu-' + suffix
     265
     266        if cpus:
     267        cmd += ' -smp cpus=' + cpus + ' '
    265268
    266269        cmdline = cmd
     
    443446def usage():
    444447        print("%s - emulator wrapper for running HelenOS\n" % os.path.basename(sys.argv[0]))
    445         print("%s [-d] [-h] [-net e1k|rtl8139|ne2k|virtio-net] [-hdd ata|virtio-blk] [-nohdd] [-nokvm] [-nonet] [-nosnd] [-nousb] [-noxhci] [-notablet]\n" %
     448        print("%s [$] [-d] [-h] [-net e1k|rtl8139|ne2k|virtio-net] [-hdd ata|virtio-blk] [-nohdd] [-nokvm] [-nonet] [-nosnd] [-nousb] [-noxhci] [-notablet]\n" %
    446449            os.path.basename(sys.argv[0]))
     450        print("$\t to run multiple($) cpus")
    447451        print("-d\tDry run: do not run the emulation, just print the command line.")
    448452        print("-h\tPrint the usage information and exit.")
     
    466470        expect_hdd = False
    467471        expect_qemu = False
     472        global cpus
     473    cpus = ''
    468474
    469475        for i in range(1, len(sys.argv)):
     
    506512                        usage()
    507513                        exit()
     514                elif sys.argv[i].isdigit():
     515            cpus = sys.argv[i]
    508516                elif sys.argv[i] == '-d':
    509517                        overrides['dryrun'] = True
Note: See TracChangeset for help on using the changeset viewer.