From ba371fb595affd68c823926b85718d1d613dc7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= Date: Sun, 29 Jun 2003 16:33:04 +0000 Subject: 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 --- apps/plugins/plugin.lds | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 apps/plugins/plugin.lds (limited to 'apps/plugins/plugin.lds') diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds new file mode 100644 index 0000000..be6b6fd --- /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 +} -- cgit v1.1