summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildzip.pl10
-rwxr-xr-xtools/configure3
2 files changed, 12 insertions, 1 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index a30eb28e67..3eb974c10d 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -216,6 +216,16 @@ sub buildzip {
216 if( filesize("rombox.ucl") > 1000) { 216 if( filesize("rombox.ucl") > 1000) {
217 `cp rombox.ucl .rockbox/`; # UCL for flashing 217 `cp rombox.ucl .rockbox/`; # UCL for flashing
218 } 218 }
219
220 # Check for rombox.target
221 if ($image=~/(.*)\.(\w+)$/)
222 {
223 my $romfile = "rombox.$2";
224 if (filesize($romfile) > 1000)
225 {
226 `cp $romfile .rockbox/`;
227 }
228 }
219 } 229 }
220 230
221 mkdir ".rockbox/docs", 0777; 231 mkdir ".rockbox/docs", 0777;
diff --git a/tools/configure b/tools/configure
index 53be8eee91..1cfc4cc104 100755
--- a/tools/configure
+++ b/tools/configure
@@ -767,7 +767,7 @@ EOF
767 output="rockbox.iriver" 767 output="rockbox.iriver"
768 appextra="recorder:gui" 768 appextra="recorder:gui"
769 archosrom="" 769 archosrom=""
770 flash="" 770 flash="$pwd/rombox.iriver"
771 plugins="yes" 771 plugins="yes"
772 codecs="libmad liba52 libffmpegFLAC libTremor libwavpack libmusepack libalac libfaad libm4a" 772 codecs="libmad liba52 libffmpegFLAC libTremor libwavpack libmusepack libalac libfaad libm4a"
773 # toolset is the tools within the tools directory that we build for 773 # toolset is the tools within the tools directory that we build for
@@ -1244,6 +1244,7 @@ fi
1244 extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES 1244 extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES
1245 appsdir='\$(ROOTDIR)/bootloader' 1245 appsdir='\$(ROOTDIR)/bootloader'
1246 apps="bootloader" 1246 apps="bootloader"
1247 flash=""
1247 if test -n "$boottool"; then 1248 if test -n "$boottool"; then
1248 tool="$boottool" 1249 tool="$boottool"
1249 fi 1250 fi