summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-08-31 19:19:35 +0000
committerDave Chapman <dave@dchapman.com>2006-08-31 19:19:35 +0000
commit657dcb5165e80b3363b89ca3108356878d4c048e (patch)
tree1f7af6e22ee866dcce37f9d1fa310c26a8bb44b4 /tools/configure
parent20332bce1d49d7285109564d2e29ee18b0acd54e (diff)
downloadrockbox-657dcb5165e80b3363b89ca3108356878d4c048e.tar.gz
rockbox-657dcb5165e80b3363b89ca3108356878d4c048e.zip
Initial commit of work for port to the Tatung Elio TPJ-1022 - yet another PortalPlayer PP5020 target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10828 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 697abceb00..b4c2fd8b21 100755
--- a/tools/configure
+++ b/tools/configure
@@ -442,6 +442,9 @@ cat <<EOF
442 442
443 ==iAudio== ==Toshiba== ==SanDisk== 443 ==iAudio== ==Toshiba== ==SanDisk==
444 30) X5/X5V/X5L 40) Gigabeat F 50) Sansa e200 444 30) X5/X5V/X5L 40) Gigabeat F 50) Sansa e200
445
446 ==Tatung==
447 60) Elio TPJ-1022
445EOF 448EOF
446 449
447 buildfor=`input`; 450 buildfor=`input`;
@@ -1018,6 +1021,32 @@ EOF
1018 t_model="h10" 1021 t_model="h10"
1019 ;; 1022 ;;
1020 1023
1024 60|tpj1022)
1025 target_id=23
1026 archos="tpj1022"
1027 target="-DELIO_TPJ1022"
1028 memory=32 # always
1029 arm7tdmicc
1030 tool="$rootdir/tools/scramble -add tpj2"
1031 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
1032 bmp2rb_native="$rootdir/tools/bmp2rb -f 5"
1033 output="rockbox.elio"
1034 appextra="recorder:gui"
1035 archosrom=""
1036 flash=""
1037 plugins="yes"
1038 codecs="libmad liba52 libffmpegFLAC libTremor libwavpack dumb libmusepack libalac libfaad libm4a"
1039 boottool="$rootdir/tools/scramble -mi4v2"
1040 bootoutput="pp5020.mi4"
1041 # toolset is the tools within the tools directory that we build for
1042 # this particular target.
1043 toolset="$genericbitmaptools scramble"
1044 # architecture, manufacturer and model for the target-tree build
1045 t_cpu="arm"
1046 t_manufacturer="tatung"
1047 t_model="tpj1022"
1048 ;;
1049
1021 *) 1050 *)
1022 echo "Please select a supported target platform!" 1051 echo "Please select a supported target platform!"
1023 exit 1052 exit