From 5d4d69bdf9f0fa63ab0a621c85f5a6e0707c6c7e Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 18 Oct 2008 11:23:07 +0000 Subject: [PATCH] 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/branches/v3_0@18824 a1c6a512-1295-4272-9138-f99709370657 --- apps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ endif $(BUILDDIR)/rockbox.ucl: $(OBJDIR)/rockbox.bin - $(call PRINTS,UCLPACK rockbox)$(TOOLSDIR)/uclpack --best --2e $< $@ >/dev/null 2>&1 + $(call PRINTS,UCLPACK rockbox)$(TOOLSDIR)/uclpack --best --2e -b1048576 $< $@ >/dev/null 2>&1 $(BUILDDIR)/rombox.ucl: $(OBJDIR)/rombox.bin $(MAXOUTFILE) $(call PRINTS,UCLPACK rombox)$(TOOLSDIR)/uclpack --none $< $@ >/dev/null 2>&1; \