Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ia64/src/main.c

    r4646710 rdbb3552  
    3333#include <arch/arch.h>
    3434#include <arch/asm.h>
     35#include <arch/_components.h>
    3536#include <genarch/efi.h>
    3637#include <arch/sal.h>
     
    4546#include <errno.h>
    4647#include <inflate.h>
    47 #include "../../components.h"
    4848
    4949#define DEFAULT_MEMORY_BASE             0x4000000ULL
     
    7878                memmap[items].size = DEFAULT_LEGACY_IO_SIZE;
    7979                memmap[items].type = MEMMAP_IO_PORTS;
    80                 items++;
     80                items++;                 
    8181        } else {
    8282                char *cur, *mm_base = (char *) bootpar->efi_memmap;
     
    159159        size_t i;
    160160        for (i = 0; i < COMPONENTS; i++)
    161                 printf(" %p|%p: %s image (%zu/%zu bytes)\n", components[i].addr,
    162                     components[i].addr, components[i].name,
     161                printf(" %p|%p: %s image (%zu/%zu bytes)\n", components[i].start,
     162                    components[i].start, components[i].name,
    163163                    components[i].inflated, components[i].size);
    164164       
     
    202202                 * overlap with the destination for inflate().
    203203                 */
    204                 memmove((void *) top, components[i - 1].addr, components[i - 1].size);
     204                memmove((void *) top, components[i - 1].start, components[i - 1].size);
    205205               
    206206                int err = inflate((void *) top, components[i - 1].size,
Note: See TracChangeset for help on using the changeset viewer.