diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2009-07-29 20:42:02 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-07-29 20:42:02 +0000 |
commit | 2fb73842a9b51e554a3a14feb0b4c0814c82ebec (patch) | |
tree | 25a93a7b725a5a2f6fa59929f7952fd8ccd7fcb0 /tools | |
parent | e30f1e83c495727d2ecd108c225499c79e467ca8 (diff) |
Start of a Rockbox port to the Samsung YP-S3.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22085 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index b23d40ed50..36c74105a3 100755 --- a/tools/configure +++ b/tools/configure @@ -815,6 +815,7 @@ cat <<EOF 140) YH-820 150) Elio TPJ-1022 ==Lyre project== 141) YH-920 130) Lyre proto 1 142) YH-925 + 143) YP-S3 EOF buildfor=`input`; @@ -2275,6 +2276,29 @@ fi t_model="yh925" ;; + 143|yps3) + target_id=60 + modelname="yps3" + target="-DSAMSUNG_YPS3" + memory=16 # always + arm940tbecc + tool="cp" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.yps3" + appextra="recorder:gui" + plugins="no" #FIXME + swcodec="yes" + toolset=$genericbitmaptools + boottool="cp" + bootoutput="rockboot.ebn" + # architecture, manufacturer and model for the target-tree build + t_cpu="arm" + t_manufacturer="s5l8700" + t_model="yps3" + ;; + + *) echo "Please select a supported target platform!" exit 7 |