diff -Napur -X /home/jbarnes/dontdiff elilo-work.orig/elilo-3.4/alloc.c elilo-work/elilo-3.4/alloc.c --- elilo-work.orig/elilo-3.4/alloc.c 2004-05-10 13:54:20.000000000 -0700 +++ elilo-work/elilo-3.4/alloc.c 2004-05-10 13:53:12.000000000 -0700 @@ -129,7 +129,9 @@ alloc_pages(UINTN pgcnt, EFI_MEMORY_TYPE status = BS->AllocatePages(where, type , pgcnt, &tmp); if (EFI_ERROR(status)) { - ERR_PRT((L"allocator: AllocatePages(%d, %d, %d, 0x%lx) failed (%r)\n", where, type, pgcnt, tmp, status)); + /* VERB_PRT because there might not be memory at the + * default load address */ + VERB_PRT(1, (L"allocator: AllocatePages(%d, %d, %d, 0x%lx) failed (%r)\n", where, type, pgcnt, tmp, status)); return NULL; } /* XXX: will cause warning on IA-32 */ @@ -155,7 +157,7 @@ free(VOID *addr) if (p->addr == addr) goto found; } /* not found */ - ERR_PRT((L"allocator: invalid free @ 0x%lx\n", addr)); + VERB_PRT(1, (L"allocator: invalid free @ 0x%lx\n", addr)); return; found: DBG_PRT((L"free: %s @0x%lx size=%ld\n", diff -Napur -X /home/jbarnes/dontdiff elilo-work.orig/elilo-3.4/ia64/gzip.c elilo-work/elilo-3.4/ia64/gzip.c --- elilo-work.orig/elilo-3.4/ia64/gzip.c 2004-05-10 13:54:20.000000000 -0700 +++ elilo-work/elilo-3.4/ia64/gzip.c 2004-05-10 13:53:12.000000000 -0700 @@ -433,7 +433,9 @@ first_block (const char *buf, long block if (alloc_kmem((void *)low_addr, pages) == -1) { VOID *new_addr; - ERR_PRT((L"%s : AllocatePages(%d, 0x%lx) for kernel failed\n", LD_NAME, pages, low_addr)); + /* VERB_PRT since there might not be memory at the + * default load address */ + VERB_PRT(1, (L"%s : AllocatePages(%d, 0x%lx) for kernel failed\n", LD_NAME, pages, low_addr)); if (ia64_can_relocate() == 0) { ERR_PRT((L"relocation is disabled, cannot load kernel")); diff -Napur -X /home/jbarnes/dontdiff elilo-work.orig/elilo-3.4/ia64/plain_loader.c elilo-work/elilo-3.4/ia64/plain_loader.c --- elilo-work.orig/elilo-3.4/ia64/plain_loader.c 2003-08-19 09:46:45.000000000 -0700 +++ elilo-work/elilo-3.4/ia64/plain_loader.c 2004-05-10 13:59:30.000000000 -0700 @@ -288,7 +288,7 @@ load_elf(fops_fd_t fd, kdesc_t *kd) if (alloc_kmem(low_addr, pages) == -1) { VOID *new_addr; - ERR_PRT((L"%s : AllocatePages(%d, 0x%lx) for kernel failed\n", LD_NAME, pages, low_addr)); + VERB_PRT(1, (L"%s : AllocatePages(%d, 0x%lx) for kernel failed\n", LD_NAME, pages, low_addr)); if (ia64_can_relocate() == 0) { ERR_PRT((L"relocation is disabled, cannot load kernel"));