summaryrefslogtreecommitdiff
path: root/src/cpu/x86/car/cache_as_ram.lds
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/x86/car/cache_as_ram.lds')
-rw-r--r--src/cpu/x86/car/cache_as_ram.lds11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cpu/x86/car/cache_as_ram.lds b/src/cpu/x86/car/cache_as_ram.lds
new file mode 100644
index 0000000000..7f1b373dba
--- /dev/null
+++ b/src/cpu/x86/car/cache_as_ram.lds
@@ -0,0 +1,11 @@
+SECTIONS {
+ .init . : {
+ _init = .;
+ *(.init.text);
+ *(.init.rodata);
+ *(.init.rodata.*);
+ . = ALIGN(16);
+ _einit = .;
+ }
+
+}