summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-10-18 11:20:22 +0000
committerJens Arnold <amiconn@rockbox.org>2008-10-18 11:20:22 +0000
commit42e0c3b45e95e5a59ecb4ee52a03c484062fc959 (patch)
treeec8ccee0c20d2d879c3095c54932dde17d971089
parent546083c78448e7ae526cdf66072bf40a0e4f910a (diff)
downloadrockbox-42e0c3b45e95e5a59ecb4ee52a03c484062fc959.tar.gz
rockbox-42e0c3b45e95e5a59ecb4ee52a03c484062fc959.zip
Increase UCL blocksize in order to fix 'blocksize too small' errors when trying to flash rockbox on fm/v2 recorders. Default blocksize is 256KB and our thinned-out decompressor only supports single-block UCL files. 1MB blocksize should be on the safe side.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18823 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 88d3155b2d..aab6885e09 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -194,7 +194,7 @@ $(BUILDDIR)/$(BINARY) : $(OBJS) $(DEPFILE) $(BUILDDIR)/libsim.a \
194endif 194endif
195 195
196$(BUILDDIR)/rockbox.ucl: $(OBJDIR)/rockbox.bin 196$(BUILDDIR)/rockbox.ucl: $(OBJDIR)/rockbox.bin
197 $(call PRINTS,UCLPACK rockbox)$(TOOLSDIR)/uclpack --best --2e $< $@ >/dev/null 2>&1 197 $(call PRINTS,UCLPACK rockbox)$(TOOLSDIR)/uclpack --best --2e -b1048576 $< $@ >/dev/null 2>&1
198 198
199$(BUILDDIR)/rombox.ucl: $(OBJDIR)/rombox.bin $(MAXOUTFILE) 199$(BUILDDIR)/rombox.ucl: $(OBJDIR)/rombox.bin $(MAXOUTFILE)
200 $(call PRINTS,UCLPACK rombox)$(TOOLSDIR)/uclpack --none $< $@ >/dev/null 2>&1; \ 200 $(call PRINTS,UCLPACK rombox)$(TOOLSDIR)/uclpack --none $< $@ >/dev/null 2>&1; \