From c75f2d14d38787c88f3756db389f8bbead69f05b Mon Sep 17 00:00:00 2001 From: Greg Menke Date: Mon, 6 Dec 2004 18:20:44 +0000 Subject: PR 729/bsps * bootloader/pci.c: Removed the r->size=0 and r->base=0 assignement which makes too-large regions conflict with onboard hardware, replacing it with sfree which deletes the memory region from the setup code, leaving it disabled. --- c/src/lib/libbsp/powerpc/shared/bootloader/ppcboot.lds | 2 ++ 1 file changed, 2 insertions(+) (limited to 'c') diff --git a/c/src/lib/libbsp/powerpc/shared/bootloader/ppcboot.lds b/c/src/lib/libbsp/powerpc/shared/bootloader/ppcboot.lds index adf9130799..a2567a9a42 100644 --- a/c/src/lib/libbsp/powerpc/shared/bootloader/ppcboot.lds +++ b/c/src/lib/libbsp/powerpc/shared/bootloader/ppcboot.lds @@ -40,6 +40,7 @@ SECTIONS *(.text) *(.sdata2) *(.rodata) + *(.rodata*) } /* . = ALIGN(16); */ .image : @@ -70,6 +71,7 @@ SECTIONS .data : { *(.data) + *(.data*) *(.sdata) . = ALIGN(4); _edata = .; -- cgit v1.2.3