Changeset 35c5d6b in mainline
- Timestamp:
- 2013-08-22T14:52:43Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a6bdccc
- Parents:
- 4da8fdb
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r4da8fdb r35c5d6b 584 584 ! CONFIG_OPTIMIZE_FOR_SIZE (n/y) 585 585 586 % Number of consoles587 @ "1"588 @ "2"589 @ "3"590 @ "4"591 @ "5"592 @ "6"593 ! [CONFIG_FB=n] CONFIG_VC_COUNT(choice)594 595 %Kernel log on console 6596 ! [CONFIG_FB=n] CONFIG_KERNEL_LOG_VC_6 (y/n)597 598 586 % Barebone build with essential binaries only 599 587 ! CONFIG_BAREBONE (n/y) -
defaults/amd64/Makefile.config
r4da8fdb r35c5d6b 25 25 # Kernel console support 26 26 CONFIG_KCONSOLE = y 27 28 # Number of shell consoles29 CONFIG_VC_COUNT = 530 27 31 28 # Kernel symbol information -
defaults/arm32/Makefile.config
r4da8fdb r35c5d6b 16 16 # Kernel console support 17 17 CONFIG_KCONSOLE = y 18 19 # Number of shell consoles20 CONFIG_VC_COUNT = 521 18 22 19 # Kernel symbol information -
defaults/ia32/Makefile.config
r4da8fdb r35c5d6b 31 31 # Kernel console support 32 32 CONFIG_KCONSOLE = y 33 34 # Number of shell consoles35 CONFIG_VC_COUNT = 536 33 37 34 # Kernel symbol information -
defaults/ia64/Makefile.config
r4da8fdb r35c5d6b 29 29 CONFIG_KCONSOLE = y 30 30 31 # Number of shell consoles32 CONFIG_VC_COUNT = 533 34 31 # Kernel symbol information 35 32 CONFIG_SYMTAB = y -
defaults/mips32/Makefile.config
r4da8fdb r35c5d6b 22 22 # Kernel console support 23 23 CONFIG_KCONSOLE = y 24 25 # Number of shell consoles26 CONFIG_VC_COUNT = 527 24 28 25 # Kernel symbol information -
defaults/mips64/Makefile.config
r4da8fdb r35c5d6b 22 22 # Kernel console support 23 23 CONFIG_KCONSOLE = y 24 25 # Number of shell consoles26 CONFIG_VC_COUNT = 527 24 28 25 # Kernel symbol information -
defaults/ppc32/Makefile.config
r4da8fdb r35c5d6b 16 16 # Kernel console support 17 17 CONFIG_KCONSOLE = y 18 19 # Number of shell consoles20 CONFIG_VC_COUNT = 521 18 22 19 # Kernel symbol information -
defaults/sparc64/Makefile.config
r4da8fdb r35c5d6b 32 32 CONFIG_KCONSOLE = y 33 33 34 # Number of shell consoles35 CONFIG_VC_COUNT = 536 37 34 # Kernel symbol information 38 35 CONFIG_SYMTAB = y -
defaults/special/Makefile.config
r4da8fdb r35c5d6b 17 17 CONFIG_KCONSOLE = y 18 18 19 # Number of shell consoles20 CONFIG_VC_COUNT = 521 22 19 # Kernel symbol information 23 20 CONFIG_SYMTAB = y -
uspace/app/init/init.c
r4da8fdb r35c5d6b 392 392 rc = console(HID_INPUT, HID_OUTPUT); 393 393 if (rc == EOK) { 394 #ifndef CONFIG_VC_COUNT 395 #define CONFIG_VC_COUNT 6 396 #endif 397 switch((unsigned)CONFIG_VC_COUNT) { 398 default: 399 case 6: getterm("term/vc5", "/app/bdsh", false); 400 case 5: getterm("term/vc4", "/app/bdsh", false); 401 case 4: getterm("term/vc3", "/app/bdsh", false); 402 case 3: getterm("term/vc2", "/app/bdsh", false); 403 case 2: getterm("term/vc1", "/app/bdsh", false); 404 case 1: getterm("term/vc0", "/app/bdsh", true); 405 } 406 #ifdef CONFIG_KERNEL_LOG_VC_6 394 getterm("term/vc0", "/app/bdsh", true); 395 getterm("term/vc1", "/app/bdsh", false); 396 getterm("term/vc2", "/app/bdsh", false); 397 getterm("term/vc3", "/app/bdsh", false); 398 getterm("term/vc4", "/app/bdsh", false); 399 getterm("term/vc5", "/app/bdsh", false); 407 400 getterm("term/vc6", "/app/klog", false); 408 #endif409 401 } 410 402 } 411 srv_start("/srv/hound");412 403 413 404 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.