diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-07-15 21:24:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-15 21:24:10 +0000 |
commit | 930dc60d41c1d320b929b0ade9288c3ccac37724 (patch) | |
tree | d0e36c49e098365f14e3327b7079a7bc9ae97a26 /tools/configure | |
parent | 1636d2e22b20ef605f3a8102a4dd0137a9ffb0fb (diff) |
added option to build for iAudio X5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7165 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-x | tools/configure | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index 74364b3e22..dd19c14925 100755 --- a/tools/configure +++ b/tools/configure @@ -396,9 +396,10 @@ appsdir='\$(ROOTDIR)/apps' echo "6 - Archos Gmini SP" echo "7 - Archos Ondio SP" echo "8 - Archos Ondio FM" - echo "9 - iRiver H120/H140" - echo "10 - iRiver H320/H340" - echo "11 - iRiver iHP-100/iHP-110/iHP-115" + echo "9 - iriver H120/H140" + echo "10 - iriver H320/H340" + echo "11 - iriver iHP-100/iHP-110/iHP-115" + echo "12 - iAudio X5" getit=`input`; @@ -552,6 +553,20 @@ appsdir='\$(ROOTDIR)/apps' codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack" ;; + 12) + archos="x5" + target="-DIAUDIO_X5" + memory=32 # always + coldfirecc + tool="$rootdir/tools/scramble -add=x5" # wrong, must be fixed + output="rockbox.iaudio" + appextra="recorder" + archosrom="" + flash="" + plugins="yes" + codecs="libmad liba52 libFLAC libTremor libwavpack dumb libmusepack" + ;; + *) echo "Please select an actual target platform!" exit |