diff options
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 |