summaryrefslogtreecommitdiffstats
path: root/bsps/mips
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-30 15:47:10 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-05-02 18:41:21 +0200
commite10dec0fe72c19320d2c93b905457a5327ec1235 (patch)
tree5552dc51b826b97490d640cb893ff084e43ae8ff /bsps/mips
parentbasedefs: Add RTEMS_NOINIT (diff)
downloadrtems-e10dec0fe72c19320d2c93b905457a5327ec1235.tar.bz2
bsps: Support RTEMS_NOINIT in linkcmds
Update #3866.
Diffstat (limited to 'bsps/mips')
-rw-r--r--bsps/mips/csb350/start/linkcmds4
-rw-r--r--bsps/mips/hurricane/start/linkcmds4
-rw-r--r--bsps/mips/jmr3904/start/linkcmds4
-rw-r--r--bsps/mips/malta/start/linkcmds4
-rw-r--r--bsps/mips/rbtx4925/start/linkcmds4
-rw-r--r--bsps/mips/rbtx4938/start/linkcmds4
6 files changed, 24 insertions, 0 deletions
diff --git a/bsps/mips/csb350/start/linkcmds b/bsps/mips/csb350/start/linkcmds
index 874cc52d8e..56748b48fa 100644
--- a/bsps/mips/csb350/start/linkcmds
+++ b/bsps/mips/csb350/start/linkcmds
@@ -192,6 +192,10 @@ SECTIONS
_end = .;
} >ram
+ .noinit (NOLOAD) : {
+ *(.noinit*)
+ } >ram
+
.rtemsstack (NOLOAD) : {
*(SORT(.rtemsstack.*))
WorkAreaBase = .;
diff --git a/bsps/mips/hurricane/start/linkcmds b/bsps/mips/hurricane/start/linkcmds
index 0a7d9ded29..383c3f2cb3 100644
--- a/bsps/mips/hurricane/start/linkcmds
+++ b/bsps/mips/hurricane/start/linkcmds
@@ -170,6 +170,10 @@ SECTIONS
_end = .;
}
+ .noinit (NOLOAD) : {
+ *(.noinit*)
+ }
+
.rtemsstack (NOLOAD) : {
*(SORT(.rtemsstack.*))
WorkAreaBase = .;
diff --git a/bsps/mips/jmr3904/start/linkcmds b/bsps/mips/jmr3904/start/linkcmds
index f81dd1be04..2ded55b786 100644
--- a/bsps/mips/jmr3904/start/linkcmds
+++ b/bsps/mips/jmr3904/start/linkcmds
@@ -167,6 +167,10 @@ SECTIONS
_clear_end = .;
}
+ .noinit (NOLOAD) : {
+ *(.noinit*)
+ }
+
.rtemsstack (NOLOAD) : {
*(SORT(.rtemsstack.*))
WorkAreaBase = .;
diff --git a/bsps/mips/malta/start/linkcmds b/bsps/mips/malta/start/linkcmds
index 8002c17234..233082e691 100644
--- a/bsps/mips/malta/start/linkcmds
+++ b/bsps/mips/malta/start/linkcmds
@@ -168,6 +168,10 @@ SECTIONS
_clear_end = .;
}
+ .noinit (NOLOAD) : {
+ *(.noinit*)
+ }
+
.rtemsstack (NOLOAD) : {
*(SORT(.rtemsstack.*))
WorkAreaBase = .;
diff --git a/bsps/mips/rbtx4925/start/linkcmds b/bsps/mips/rbtx4925/start/linkcmds
index e78fcb57a0..2fa62a4b0c 100644
--- a/bsps/mips/rbtx4925/start/linkcmds
+++ b/bsps/mips/rbtx4925/start/linkcmds
@@ -170,6 +170,10 @@ SECTIONS
_end = .;
}
+ .noinit (NOLOAD) : {
+ *(.noinit*)
+ }
+
.rtemsstack (NOLOAD) : {
*(SORT(.rtemsstack.*))
WorkAreaBase = .;
diff --git a/bsps/mips/rbtx4938/start/linkcmds b/bsps/mips/rbtx4938/start/linkcmds
index fae3885dc5..f298db0513 100644
--- a/bsps/mips/rbtx4938/start/linkcmds
+++ b/bsps/mips/rbtx4938/start/linkcmds
@@ -170,6 +170,10 @@ SECTIONS
_end = .;
}
+ .noinit (NOLOAD) : {
+ *(.noinit*)
+ }
+
.rtemsstack (NOLOAD) : {
*(SORT(.rtemsstack.*))
WorkAreaBase = .;