summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-01-12 00:35:50 +0000
committerDave Chapman <dave@dchapman.com>2006-01-12 00:35:50 +0000
commitd83e929f3fc369a5981e1e40e1c5307169a46cfc (patch)
treeac323ca5811374a030a1b65bb77fc7ccc163db04 /tools
parent8d130684214d23a9163810d1dacc33d108f2338a (diff)
downloadrockbox-d83e929f3fc369a5981e1e40e1c5307169a46cfc.tar.gz
rockbox-d83e929f3fc369a5981e1e40e1c5307169a46cfc.zip
Work-in-progress iriver iFP-7xx port by Tomasz Malesinski
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8342 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure15
-rw-r--r--tools/scramble.c2
2 files changed, 17 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 68d2481922..f8fea6e76c 100755
--- a/tools/configure
+++ b/tools/configure
@@ -425,6 +425,7 @@ appsdir='\$(ROOTDIR)/apps'
425 echo "13 - iPod Color/Photo" 425 echo "13 - iPod Color/Photo"
426 echo "14 - iPod Nano" 426 echo "14 - iPod Nano"
427 echo "15 - iPod Video" 427 echo "15 - iPod Video"
428 echo "16 - iriver iFP-790"
428 429
429 getit=`input`; 430 getit=`input`;
430 431
@@ -691,6 +692,20 @@ appsdir='\$(ROOTDIR)/apps'
691 toolset=$ipodbitmaptools 692 toolset=$ipodbitmaptools
692 ;; 693 ;;
693 694
695 16)
696 archos="ifp7xx"
697 target="-DIRIVER_IFP7XX"
698 memory=1
699 arm7tdmicc
700 tool="cp"
701 output="rockbox.wma"
702 appextra="recorder:gui"
703 archosrom=""
704 flash=""
705 plugins="yes"
706 codecs="libmad liba52 libffmpegFLAC libTremor libwavpack dumb libmusepack libalac libfaad libm4a"
707 ;;
708
694 *) 709 *)
695 echo "Please select an actual target platform!" 710 echo "Please select an actual target platform!"
696 exit 711 exit
diff --git a/tools/scramble.c b/tools/scramble.c
index d19ef89173..44a1902424 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -171,6 +171,8 @@ int main (int argc, char** argv)
171 modelnum = 4; 171 modelnum = 4;
172 else if(!strcmp(&argv[1][5], "ipvd")) 172 else if(!strcmp(&argv[1][5], "ipvd"))
173 modelnum = 5; 173 modelnum = 5;
174 else if(!strcmp(&argv[1][5], "fp7x"))
175 modelnum = 6;
174 else { 176 else {
175 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 177 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
176 return 2; 178 return 2;