summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2021-02-24 17:04:36 +1100
committerChris Johns <chrisj@rtems.org>2021-02-24 17:04:36 +1100
commit3824960f24304eec051fdc59121ba9ba8a8346da (patch)
tree03f98e4657db88d4e98d30f46a7f805836ff5662
parentUpdate motorola_power to irq-generic interrupt management (diff)
downloadrtems-3824960f24304eec051fdc59121ba9ba8a8346da.tar.bz2
powerpc/motorola_power: Link all text sections into the executable image
- The change to building all code with code and data sections means we have a section per function. Make sure all functions are placed in the text section. Closes #4266
-rw-r--r--bsps/powerpc/motorola_powerpc/bootloader/ppcboot.lds2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/powerpc/motorola_powerpc/bootloader/ppcboot.lds b/bsps/powerpc/motorola_powerpc/bootloader/ppcboot.lds
index 0ee7447546..a87a07cfd7 100644
--- a/bsps/powerpc/motorola_powerpc/bootloader/ppcboot.lds
+++ b/bsps/powerpc/motorola_powerpc/bootloader/ppcboot.lds
@@ -38,6 +38,7 @@ SECTIONS
BYTE(0x75); BYTE(0x78); /* Partition name */
. = 0x400;
*(.text)
+ *(.text*)
*(.sdata2)
*(.rodata)
*(.rodata*)
@@ -98,4 +99,3 @@ SECTIONS
*(.comment)
}
}
-