summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-04-24 13:34:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-04-24 14:35:16 +0200
commitd101853478993e435d4da854071863ad656a123c (patch)
tree00d2a199bb3a4cbcf46b88d81b72574c16beab66 /c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base
parentbsp/mpc55xxevb: Change early MMU settings (diff)
downloadrtems-d101853478993e435d4da854071863ad656a123c.tar.bz2
bsps/powerpc: Add no cache section
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base9
1 files changed, 8 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base b/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base
index 25fc1dcd39..24cee144f4 100644
--- a/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base
+++ b/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base
@@ -7,7 +7,7 @@
*/
/*
- * Copyright (c) 2011 embedded brains GmbH. All rights reserved.
+ * Copyright (c) 2011-2012 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Obere Lagerstr. 30
@@ -324,6 +324,13 @@ SECTIONS {
} > REGION_STACK AT > REGION_STACK
bsp_section_stack_size = bsp_section_stack_end - bsp_section_stack_begin;
+ .nocache : {
+ bsp_section_nocache_begin = .;
+ *(.bsp_nocache)
+ bsp_section_nocache_end = .;
+ } > REGION_NOCACHE AT > REGION_NOCACHE
+ bsp_section_nocache_size = bsp_section_nocache_end - bsp_section_nocache_begin;
+
/* FIXME */
RamBase = ORIGIN (REGION_WORK);
RamSize = LENGTH (REGION_WORK);