Changes in kernel/arch/arm32/src/arm32.c [a71c158:646b996] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/arm32.c
ra71c158 r646b996 89 89 interrupt_init(); 90 90 91 #ifdef CONFIG_FB 92 machine_fb_init(); 93 #else 94 #ifdef CONFIG_ARM_PRN 91 95 machine_output_init(); 96 #endif /* CONFIG_ARM_PRN */ 97 #endif /* CONFIG_FB */ 92 98 } 93 99 … … 176 182 } 177 183 184 /** Acquire console back for kernel. */ 185 void arch_grab_console(void) 186 { 187 machine_grab_console(); 188 #ifdef CONFIG_FB 189 fb_redraw(); 190 #endif 191 } 192 193 /** Return console to userspace. */ 194 void arch_release_console(void) 195 { 196 machine_release_console(); 197 } 198 178 199 /** @} 179 200 */
Note:
See TracChangeset
for help on using the changeset viewer.