Changes in kernel/arch/sparc64/src/sun4u/sparc64.c [a35b458:7510326] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/sun4u/sparc64.c
ra35b458 r7510326 72 72 /* Copy init task info. */ 73 73 init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS); 74 74 75 75 size_t i; 76 76 for (i = 0; i < init.cnt; i++) { … … 80 80 bootinfo->taskmap.tasks[i].name); 81 81 } 82 82 83 83 /* Copy physical memory map. */ 84 84 memmap.total = bootinfo->memmap.total; … … 88 88 memmap.zones[i].size = bootinfo->memmap.zones[i].size; 89 89 } 90 90 91 91 /* Copy boot allocations info. */ 92 92 ballocs.base = bootinfo->ballocs.base; 93 93 ballocs.size = bootinfo->ballocs.size; 94 94 95 95 ofw_tree_init(bootinfo->ofw_root); 96 96 } … … 111 111 /* Map OFW information into sysinfo */ 112 112 ofw_sysinfo_map(); 113 113 114 114 /* 115 115 * We have 2^11 different interrupt vectors. … … 167 167 (ALIGN_UP(STACK_ITEM_SIZE, STACK_ALIGNMENT) + STACK_BIAS), 168 168 (uintptr_t) kernel_uarg->uspace_uarg); 169 169 170 170 /* Not reached */ 171 171 while (1);
Note:
See TracChangeset
for help on using the changeset viewer.