Changeset 481c520 in mainline for arch/sparc64/src/sparc64.c
- Timestamp:
- 2006-02-27T12:30:11Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 02f441c0
- Parents:
- 4a2b52f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/src/sparc64.c
r4a2b52f r481c520 37 37 { 38 38 interrupts_disable(); 39 ofw_sparc64_console_init(); 39 40 trap_init(); 40 41 tick_init(); … … 43 44 void arch_post_mm_init(void) 44 45 { 45 fb_sparc64_console_init();46 standalone_sparc64_console_init(); 46 47 } 47 48 … … 52 53 void arch_post_smp_init(void) 53 54 { 55 thread_t *t; 56 57 /* 58 * Create thread that reads characters from OFW's input. 59 */ 60 t = thread_create(kofwinput, NULL, TASK, 0); 61 if (!t) 62 panic("cannot create kofwinput\n"); 63 thread_ready(t); 54 64 } 55 65
Note:
See TracChangeset
for help on using the changeset viewer.