diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-03-11 22:53:03 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-03-11 22:53:03 +0000 |
commit | 6643b0dd62b8de4f010676bd72a3758ceccde816 (patch) | |
tree | c5a4641c70f541ac601feddbe32aabcb960d0b16 | |
parent | dd939aa4d73a6328f6f3245dd3b3c9de35338f5b (diff) | |
download | rockbox-6643b0dd62b8de4f010676bd72a3758ceccde816.tar.gz rockbox-6643b0dd62b8de4f010676bd72a3758ceccde816.zip |
Use cvs uclpack for bootbox.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9009 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | flash/bootbox/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/flash/bootbox/Makefile b/flash/bootbox/Makefile index 3355238632..7a58749c07 100644 --- a/flash/bootbox/Makefile +++ b/flash/bootbox/Makefile | |||
@@ -67,14 +67,8 @@ $(BUILDDIR)/$(BINARY) : $(OBJDIR)/bootbox.bin | |||
67 | @$(MKFIRMWARE) $< $@ | 67 | @$(MKFIRMWARE) $< $@ |
68 | 68 | ||
69 | $(FLASHFILE): $(OBJDIR)/bootbox.bin | 69 | $(FLASHFILE): $(OBJDIR)/bootbox.bin |
70 | @a=`uclpack -h 2>/dev/null`; \ | 70 | $(SILENT)(echo "UCLPACK bootbox" ; \ |
71 | if test -n "$$a"; then \ | 71 | $(TOOLSDIR)/uclpack --best --2e $< $@ >/dev/null 2>&1;) |
72 | echo "UCLPACK bootbox" ; \ | ||
73 | uclpack --best --2e $< $@ >/dev/null 2>&1; \ | ||
74 | else \ | ||
75 | echo "no uclpack command found, makes a fake bootbox.ucl"; \ | ||
76 | echo "fake" > $@; \ | ||
77 | fi | ||
78 | 72 | ||
79 | include $(TOOLSDIR)/make.inc | 73 | include $(TOOLSDIR)/make.inc |
80 | 74 | ||