summaryrefslogtreecommitdiff
path: root/firmware/decompressor/Makefile
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-11-28 23:40:57 +0000
committerJens Arnold <amiconn@rockbox.org>2005-11-28 23:40:57 +0000
commit104b81ea9a1a9c7b67e9e060fef4d0a97a547b7b (patch)
tree5234c4b9fe280b128bac7bc5ccbbeb7e7ac90915 /firmware/decompressor/Makefile
parentd371141493a6863890e3867e5fef4f9c1b9d3add (diff)
downloadrockbox-104b81ea9a1a9c7b67e9e060fef4d0a97a547b7b.tar.gz
rockbox-104b81ea9a1a9c7b67e9e060fef4d0a97a547b7b.zip
Fixed self-extracting loader: (1) Proper startup code, ensuring the stack pointer is set to the desired location. (2) Code cleanup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8103 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/decompressor/Makefile')
-rw-r--r--firmware/decompressor/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/decompressor/Makefile b/firmware/decompressor/Makefile
index 99e91aa35e..29a78523ea 100644
--- a/firmware/decompressor/Makefile
+++ b/firmware/decompressor/Makefile
@@ -21,7 +21,7 @@ MEMORYSIZE = 2
21 21
22LDS := link.lds 22LDS := link.lds
23LINKFILE = $(OBJDIR)/linkage.lds 23LINKFILE = $(OBJDIR)/linkage.lds
24OBJS := $(OBJDIR)/decompressor.o $(OBJDIR)/rockboxucl.o 24OBJS := $(OBJDIR)/decompressor.o $(OBJDIR)/rockboxucl.o $(OBJDIR)/startup.o
25 25
26CFLAGS = -O -W -Wall -m1 -nostdlib -ffreestanding -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns 26CFLAGS = -O -W -Wall -m1 -nostdlib -ffreestanding -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns
27 27