diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-10-18 11:20:22 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-10-18 11:20:22 +0000 |
| commit | 42e0c3b45e95e5a59ecb4ee52a03c484062fc959 (patch) | |
| tree | ec8ccee0c20d2d879c3095c54932dde17d971089 | |
| parent | 546083c78448e7ae526cdf66072bf40a0e4f910a (diff) | |
| download | rockbox-42e0c3b45e95e5a59ecb4ee52a03c484062fc959.zip rockbox-42e0c3b45e95e5a59ecb4ee52a03c484062fc959.tar.gz rockbox-42e0c3b45e95e5a59ecb4ee52a03c484062fc959.tar.bz2 rockbox-42e0c3b45e95e5a59ecb4ee52a03c484062fc959.tar.xz | |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 88d3155..aab6885 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; \ |