From 061f38096a6990f1b3de2fd2dc4f06ecb29e363f Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Sun, 13 Nov 2005 20:59:30 +0000 Subject: Implement (unreliable) button detection using code from ipodlinux bootloader - this needs replacing by a better button driver in firmware/ and triple-boot bootloader functionality. Current button mappings: MENU loads rockbox.ipod and checks the checksum (but doesn't execute it), PLAY will load and execute a Linux kernel (linux.bin). An error in either of those two actions, or no keypress will load the original firmware git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7848 a1c6a512-1295-4272-9138-f99709370657 --- firmware/boot.lds | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware/boot.lds') diff --git a/firmware/boot.lds b/firmware/boot.lds index ec8db5ba90..2d320e2b81 100644 --- a/firmware/boot.lds +++ b/firmware/boot.lds @@ -79,10 +79,10 @@ SECTIONS stackend = .; } - /* The bss section is too large for IRAM - we just move it near the - end of the regular RAM. */ + /* The bss section is too large for IRAM - we just move it 16MB into the + DRAM */ - . = 0x11c00000; + . = (DRAMORIG+16*1024*1024); .bss : { _bssstart = .; *(.bss); -- cgit v1.2.3