Changeset a27d1c5 in mainline
- Timestamp:
- 2012-07-13T22:00:45Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d9197e
- Parents:
- e677b08
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
re677b08 ra27d1c5 562 562 ! CONFIG_OPTIMIZE_FOR_SIZE (n/y) 563 563 564 % Number of consoles 565 @ "1" 566 @ "2" 567 @ "3" 568 @ "4" 569 @ "5" 570 @ "6" 571 ! CONFIG_VC_COUNT(choice) 572 573 %Kernel log on console 6 574 ! CONFIG_KERNEL_LOG_VC_6 (y/n) 575 564 576 % Barebone build with essential binaries only 565 577 ! CONFIG_BAREBONE (n/y) -
defaults/amd64/Makefile.config
re677b08 ra27d1c5 25 25 # Kernel console support 26 26 CONFIG_KCONSOLE = y 27 28 # Number of shell consoles 29 CONFIG_VC_COUNT = 5 27 30 28 31 # Kernel symbol information -
defaults/arm32/Makefile.config
re677b08 ra27d1c5 16 16 # Kernel console support 17 17 CONFIG_KCONSOLE = y 18 19 # Number of shell consoles 20 CONFIG_VC_COUNT = 5 18 21 19 22 # Kernel symbol information -
defaults/ia32/Makefile.config
re677b08 ra27d1c5 31 31 # Kernel console support 32 32 CONFIG_KCONSOLE = y 33 34 # Number of shell consoles 35 CONFIG_VC_COUNT = 5 33 36 34 37 # Kernel symbol information -
defaults/ia64/Makefile.config
re677b08 ra27d1c5 29 29 CONFIG_KCONSOLE = y 30 30 31 # Number of shell consoles 32 CONFIG_VC_COUNT = 5 33 31 34 # Kernel symbol information 32 35 CONFIG_SYMTAB = y -
defaults/mips32/Makefile.config
re677b08 ra27d1c5 22 22 # Kernel console support 23 23 CONFIG_KCONSOLE = y 24 25 # Number of shell consoles 26 CONFIG_VC_COUNT = 5 24 27 25 28 # Kernel symbol information -
defaults/mips64/Makefile.config
re677b08 ra27d1c5 22 22 # Kernel console support 23 23 CONFIG_KCONSOLE = y 24 25 # Number of shell consoles 26 CONFIG_VC_COUNT = 5 24 27 25 28 # Kernel symbol information -
defaults/ppc32/Makefile.config
re677b08 ra27d1c5 16 16 # Kernel console support 17 17 CONFIG_KCONSOLE = y 18 19 # Number of shell consoles 20 CONFIG_VC_COUNT = 5 18 21 19 22 # Kernel symbol information -
defaults/sparc64/Makefile.config
re677b08 ra27d1c5 32 32 CONFIG_KCONSOLE = y 33 33 34 # Number of shell consoles 35 CONFIG_VC_COUNT = 5 36 34 37 # Kernel symbol information 35 38 CONFIG_SYMTAB = y -
defaults/special/Makefile.config
re677b08 ra27d1c5 17 17 CONFIG_KCONSOLE = y 18 18 19 # Number of shell consoles 20 CONFIG_VC_COUNT = 5 21 19 22 # Kernel symbol information 20 23 CONFIG_SYMTAB = y -
uspace/app/init/init.c
re677b08 ra27d1c5 340 340 341 341 spawn("/srv/hound"); 342 getterm("term/vc0", "/app/bdsh", true); 343 getterm("term/vc1", "/app/bdsh", false); 344 getterm("term/vc2", "/app/bdsh", false); 345 getterm("term/vc3", "/app/bdsh", false); 346 getterm("term/vc4", "/app/bdsh", false); 347 getterm("term/vc5", "/app/bdsh", false); 342 switch((unsigned)CONFIG_VC_COUNT) { 343 default: 344 case 6: getterm("term/vc5", "/app/bdsh", false); 345 case 5: getterm("term/vc4", "/app/bdsh", false); 346 case 4: getterm("term/vc3", "/app/bdsh", false); 347 case 3: getterm("term/vc2", "/app/bdsh", false); 348 case 2: getterm("term/vc1", "/app/bdsh", false); 349 case 1: getterm("term/vc0", "/app/bdsh", true); 350 } 351 #ifdef CONFIG_KERNEL_LOG_VC_6 348 352 getterm("term/vc6", "/app/klog", false); 353 #endif 349 354 350 355 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.