Changeset 753d851 in mainline
- Timestamp:
- 2009-02-08T22:25:30Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 198a9ef
- Parents:
- fd375a8d
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
rfd375a8d r753d851 176 176 177 177 % Framebuffer support 178 ! [(PLATFORM=mips32&MACHINE=lgxemul)|(PLATFORM=mips32&MACHINE=bgxemul)|(PLATFORM=ia32)|(PLATFORM=amd64)|(PLATFORM=arm32) ] CONFIG_FB (y/n)178 ! [(PLATFORM=mips32&MACHINE=lgxemul)|(PLATFORM=mips32&MACHINE=bgxemul)|(PLATFORM=ia32)|(PLATFORM=amd64)|(PLATFORM=arm32)|(PLATFORM=sparc64&MACHINE=us3)] CONFIG_FB (y/n) 179 179 180 180 % Framebuffer width -
kernel/arch/sparc64/Makefile.inc
rfd375a8d r753d851 65 65 # 66 66 67 CONFIG_FB = y 67 ifeq ($(MACHINE),us) 68 CONFIG_FB = y 69 endif 68 70 69 71 ## Compile with support for Sun keyboard. … … 118 120 arch/$(ARCH)/src/drivers/tick.c \ 119 121 arch/$(ARCH)/src/drivers/kbd.c \ 120 arch/$(ARCH)/src/drivers/scr.c \121 122 arch/$(ARCH)/src/drivers/sgcn.c \ 122 123 arch/$(ARCH)/src/drivers/pci.c 123 124 125 ifeq ($(CONFIG_FB),y) 126 ARCH_SOURCES += \ 127 arch/$(ARCH)/src/drivers/scr.c 128 endif 124 129 125 130 ifeq ($(CONFIG_SMP),y) -
kernel/arch/sparc64/src/console.c
rfd375a8d r753d851 70 70 static void standard_console_init(ofw_tree_node_t *aliases) 71 71 { 72 #ifdef CONFIG_FB 72 73 stdin = NULL; 73 74 … … 97 98 98 99 kbd_init(keyboard); 100 #else 101 panic("Standard console requires FB, " 102 "but the kernel is not compiled with FB support."); 103 #endif 99 104 } 100 105 … … 176 181 void arch_grab_console(void) 177 182 { 183 #ifdef CONFIG_FB 178 184 scr_redraw(); 185 #endif 179 186 switch (kbd_type) { 180 187 #ifdef CONFIG_Z8530 -
kernel/generic/src/main/kinit.c
rfd375a8d r753d851 75 75 #define ALIVE_CHARS 4 76 76 77 #ifdef CONFIG_KCONSOLE 77 78 static char alive[ALIVE_CHARS] = "-\\|/"; 79 #endif 78 80 79 81 /** Kernel initialization thread.
Note:
See TracChangeset
for help on using the changeset viewer.