Changes in boot/arch/sparc64/src/main.c [4646710:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/src/main.c
r4646710 r9d58539 32 32 #include <arch/asm.h> 33 33 #include <arch/ofw.h> 34 #include <arch/_components.h> 34 35 #include <genarch/ofw.h> 35 36 #include <genarch/ofw_tree.h> … … 43 44 #include <errno.h> 44 45 #include <inflate.h> 45 #include "../../components.h"46 46 47 47 /* The lowest ID (read from the VER register) of some US3 CPU model */ … … 220 220 size_t i; 221 221 for (i = 0; i < COMPONENTS; i++) 222 printf(" %p|%p: %s image (%zu/%zu bytes)\n", components[i]. addr,223 ofw_translate(components[i]. addr), components[i].name,222 printf(" %p|%p: %s image (%zu/%zu bytes)\n", components[i].start, 223 ofw_translate(components[i].start), components[i].name, 224 224 components[i].inflated, components[i].size); 225 225 … … 267 267 ALIGN_UP(components[i - 1].inflated, PAGE_SIZE), -1); 268 268 269 int err = inflate(components[i - 1]. addr, components[i - 1].size,269 int err = inflate(components[i - 1].start, components[i - 1].size, 270 270 dest[i - 1], components[i - 1].inflated); 271 271
Note:
See TracChangeset
for help on using the changeset viewer.