diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-07-08 06:31:13 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-08 06:31:13 +0000 |
| commit | 8493ccb285937b54ddc8a50ae092c7a9a044b2a3 (patch) | |
| tree | ce6000516ac0023fc223a046e9df2fb34a9a26a8 /tools | |
| parent | c28969d11f16b53c50918b06dbe9e545e33ce323 (diff) | |
| download | rockbox-8493ccb285937b54ddc8a50ae092c7a9a044b2a3.zip rockbox-8493ccb285937b54ddc8a50ae092c7a9a044b2a3.tar.gz rockbox-8493ccb285937b54ddc8a50ae092c7a9a044b2a3.tar.bz2 rockbox-8493ccb285937b54ddc8a50ae092c7a9a044b2a3.tar.xz | |
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')
| -rwxr-xr-x | tools/configure | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 8576430..245e447 100755 --- a/tools/configure +++ b/tools/configure @@ -382,6 +382,7 @@ appsdir='\$(ROOTDIR)/apps' echo "8 - Archos Ondio FM" echo "9 - iRiver H120/H140" echo "10 - iRiver H320/H340" + echo "11 - iRiver iHP-100/iHP-110/iHP-115" getit=`input`; @@ -494,8 +495,8 @@ appsdir='\$(ROOTDIR)/apps' ;; 9) - archos="h100" - target="-DIRIVER_H100" + archos="h120" + target="-DIRIVER_H120" memory=32 # always coldfirecc tool="$rootdir/tools/scramble -add=h120" @@ -521,6 +522,20 @@ appsdir='\$(ROOTDIR)/apps' codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack" ;; + 11) + archos="h100" + target="-DIRIVER_H100" + memory=16 # always + coldfirecc + tool="$rootdir/tools/scramble -add=h100" + output="rockbox.iriver" + appextra="recorder" + archosrom="" + flash="" + plugins="yes" + codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack" + ;; + *) echo "Please select an actual target platform!" exit |