Changes in kernel/arch/mips32/src/mips32.c [a71c158:30885b9] in mainline
- File:
-
- 1 edited
-
kernel/arch/mips32/src/mips32.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/mips32.c
ra71c158 r30885b9 144 144 .visual = VISUAL_RGB_8_8_8, 145 145 }; 146 147 outdev_t *fbdev = fb_init(&gxemul_prop); 148 if (fbdev) 149 stdout_wire(fbdev); 150 #endif 151 146 fb_init(&gxemul_prop); 147 #else 152 148 #ifdef CONFIG_MIPS_PRN 153 outdev_t *dsrlndev = dsrlnout_init((ioport8_t *) MSIM_KBD_ADDRESS); 154 if (dsrlndev) 155 stdout_wire(dsrlndev); 156 #endif 149 dsrlnout_init((ioport8_t *) MSIM_KBD_ADDRESS); 150 #endif /* CONFIG_MIPS_PRN */ 151 #endif /* CONFIG_FB */ 157 152 } 158 153 … … 257 252 } 258 253 254 void arch_grab_console(void) 255 { 256 #ifdef CONFIG_FB 257 fb_redraw(); 258 #endif 259 } 260 261 /** Return console to userspace 262 * 263 */ 264 void arch_release_console(void) 265 { 266 } 267 259 268 /** @} 260 269 */
Note:
See TracChangeset
for help on using the changeset viewer.
