summaryrefslogtreecommitdiffstats
path: root/bsps
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2021-02-24 17:04:36 +1100
committerChris Johns <chrisj@rtems.org>2021-02-28 13:16:53 +1100
commit75fb7a0ee5d76f392e3b38bb920969dffef6e86c (patch)
tree77241fb7b026a5d53c771e2e0e4a3cfab0e643e7 /bsps
parentgetgrent.c, record-client.c: Add missing includes for assert.h (diff)
downloadrtems-75fb7a0ee5d76f392e3b38bb920969dffef6e86c.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
Diffstat (limited to 'bsps')
-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)
}
}
-