Changes in kernel/arch/ia64/src/ia64.c [a71c158:c2417bc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
ra71c158 rc2417bc 160 160 } 161 161 162 outdev_t *skidev = skiout_init(); 163 if (skidev) 164 stdout_wire(skidev); 162 skiout_init(); 165 163 #endif 166 164 167 165 #ifdef CONFIG_EGA 168 outdev_t *egadev = ega_init(EGA_BASE, EGA_VIDEORAM); 169 if (egadev) 170 stdout_wire(egadev); 166 ega_init(EGA_BASE, EGA_VIDEORAM); 171 167 #endif 172 168 … … 253 249 unative_t sys_tls_set(unative_t addr) 254 250 { 255 return 0; 251 return 0; 252 } 253 254 /** Acquire console back for kernel 255 * 256 */ 257 void arch_grab_console(void) 258 { 259 #ifdef MACHINE_ski 260 ski_kbd_grab(); 261 #endif 262 } 263 264 /** Return console to userspace 265 * 266 */ 267 void arch_release_console(void) 268 { 269 #ifdef MACHINE_ski 270 ski_kbd_release(); 271 #endif 256 272 } 257 273
Note:
See TracChangeset
for help on using the changeset viewer.