Changeset 2fc9bfd in mainline
- Timestamp:
- 2018-06-27T14:47:26Z (7 years ago)
- 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)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r831aa466 r2fc9bfd 494 494 495 495 % 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) 497 497 498 498 % Use NS16550 controller as serial input (kernel console) -
tools/ew.py
r831aa466 r2fc9bfd 217 217 cmdline += ' -nographic' 218 218 219 if ((not is_override('nographic')) and not is_override('noserial')): 220 cmdline += ' -serial stdio' 221 219 222 if (is_override('bigmem')): 220 223 cmdline += ' -m 4G' … … 343 346 print("-notablet\tDisable USB tablet (use only relative-position PS/2 mouse instead), if applicable.") 344 347 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.") 345 349 print("-bigmem\tSets maximum RAM size to 4GB.") 346 350 … … 401 405 elif sys.argv[i] == '-bigmem': 402 406 overrides['bigmem'] = True 407 elif sys.argv[i] == '-noserial': 408 overrides['noserial'] = True 403 409 elif sys.argv[i] == '-qemu_path' and i < len(sys.argv) - 1: 404 410 expect_qemu = True
Note:
See TracChangeset
for help on using the changeset viewer.