Changeset 2fc9bfd in mainline


Ignore:
Timestamp:
2018-06-27T14:47:26Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60876fd3
Parents:
831aa466
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-27 14:37:32)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-27 14:47:26)
Message:

tools/ew.py: Expose serial port in terminal by default.
Enable NS16550 kcon on x86 by default.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    r831aa466 r2fc9bfd  
    494494
    495495% Support for NS16550 controller (kernel console)
    496 ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=serial|CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&(PLATFORM=ia32|PLATFORM=amd64)] CONFIG_NS16550_KCON (n/y)
     496! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=serial|CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&(PLATFORM=ia32|PLATFORM=amd64)] CONFIG_NS16550_KCON (y/n)
    497497
    498498% Use NS16550 controller as serial input (kernel console)
  • tools/ew.py

    r831aa466 r2fc9bfd  
    217217                cmdline += ' -nographic'
    218218
     219        if ((not is_override('nographic')) and not is_override('noserial')):
     220                cmdline += ' -serial stdio'
     221
    219222        if (is_override('bigmem')):
    220223                cmdline += ' -m 4G'
     
    343346        print("-notablet\tDisable USB tablet (use only relative-position PS/2 mouse instead), if applicable.")
    344347        print("-nographic\tDisable graphical output. Serial port output must be enabled for this to be useful.")
     348        print("-noserial\tDisable serial port output in the terminal.")
    345349        print("-bigmem\tSets maximum RAM size to 4GB.")
    346350
     
    401405                elif sys.argv[i] == '-bigmem':
    402406                        overrides['bigmem'] = True
     407                elif sys.argv[i] == '-noserial':
     408                        overrides['noserial'] = True
    403409                elif sys.argv[i] == '-qemu_path' and i < len(sys.argv) - 1:
    404410                        expect_qemu = True
Note: See TracChangeset for help on using the changeset viewer.