diff options
author | Björn Stenberg <bjorn@haxx.se> | 2003-06-29 16:33:04 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2003-06-29 16:33:04 +0000 |
commit | ba371fb595affd68c823926b85718d1d613dc7d3 (patch) | |
tree | cfda303d0603d623cdb12f3928905d3ae02f1d87 /apps/plugins/plugin.lds | |
parent | 9bcbe3fd723d23a709873a0855f27b86bc5c96f1 (diff) |
Added plugin loader. Moved games, demos and the text viewer to loadable plugins. Copy your *.rock files to /.rockbox/rocks/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3769 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugin.lds')
-rw-r--r-- | apps/plugins/plugin.lds | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds new file mode 100644 index 0000000000..be6b6fd0a6 --- /dev/null +++ b/apps/plugins/plugin.lds @@ -0,0 +1,26 @@ +OUTPUT_FORMAT(elf32-sh) + +MEMORY +{ + PLUGIN_RAM : ORIGIN = 0x091f8000, LENGTH = 0x8000 +} + +SECTIONS +{ + .text : { + *(.entry) + *(.text) + } > PLUGIN_RAM + + .data : { + *(.data) + } > PLUGIN_RAM + + .bss : { + *(.bss) + } > PLUGIN_RAM + + .rodata : { + *(.rodata) + } > PLUGIN_RAM +} |