summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-07-08 06:31:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-07-08 06:31:13 +0000
commit8493ccb285937b54ddc8a50ae092c7a9a044b2a3 (patch)
treece6000516ac0023fc223a046e9df2fb34a9a26a8 /tools/configure
parentc28969d11f16b53c50918b06dbe9e545e33ce323 (diff)
downloadrockbox-8493ccb285937b54ddc8a50ae092c7a9a044b2a3.tar.gz
rockbox-8493ccb285937b54ddc8a50ae092c7a9a044b2a3.zip
Renamed the iriver h120 defines and configs to "h120"! Added initial support
for the h100 series. Please re-run configure. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7062 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure19
1 files changed, 17 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index 85764308db..245e44742e 100755
--- a/tools/configure
+++ b/tools/configure
@@ -382,6 +382,7 @@ appsdir='\$(ROOTDIR)/apps'
382 echo "8 - Archos Ondio FM" 382 echo "8 - Archos Ondio FM"
383 echo "9 - iRiver H120/H140" 383 echo "9 - iRiver H120/H140"
384 echo "10 - iRiver H320/H340" 384 echo "10 - iRiver H320/H340"
385 echo "11 - iRiver iHP-100/iHP-110/iHP-115"
385 386
386 getit=`input`; 387 getit=`input`;
387 388
@@ -494,8 +495,8 @@ appsdir='\$(ROOTDIR)/apps'
494 ;; 495 ;;
495 496
496 9) 497 9)
497 archos="h100" 498 archos="h120"
498 target="-DIRIVER_H100" 499 target="-DIRIVER_H120"
499 memory=32 # always 500 memory=32 # always
500 coldfirecc 501 coldfirecc
501 tool="$rootdir/tools/scramble -add=h120" 502 tool="$rootdir/tools/scramble -add=h120"
@@ -521,6 +522,20 @@ appsdir='\$(ROOTDIR)/apps'
521 codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack" 522 codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack"
522 ;; 523 ;;
523 524
525 11)
526 archos="h100"
527 target="-DIRIVER_H100"
528 memory=16 # always
529 coldfirecc
530 tool="$rootdir/tools/scramble -add=h100"
531 output="rockbox.iriver"
532 appextra="recorder"
533 archosrom=""
534 flash=""
535 plugins="yes"
536 codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack"
537 ;;
538
524 *) 539 *)
525 echo "Please select an actual target platform!" 540 echo "Please select an actual target platform!"
526 exit 541 exit