diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2009-03-30 12:20:47 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2009-03-30 12:20:47 +0000 |
| commit | 8983fcb5f2687b22b2cba68573f839ff2800e3c9 (patch) | |
| tree | cabc0667fa7293148bb0aabf5af235c7135c8526 /tools | |
| parent | ddc554f62bb99a00b534e5f18aa0f1165df0622f (diff) | |
| download | rockbox-8983fcb5f2687b22b2cba68573f839ff2800e3c9.zip rockbox-8983fcb5f2687b22b2cba68573f839ff2800e3c9.tar.gz rockbox-8983fcb5f2687b22b2cba68573f839ff2800e3c9.tar.bz2 rockbox-8983fcb5f2687b22b2cba68573f839ff2800e3c9.tar.xz | |
Initial commit for the "Lyre prototype 1" port by Jorge Pinto from FS#10045.
Bootloader builds, normal does not.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20574 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index 04954cc..b4400dd 100755 --- a/tools/configure +++ b/tools/configure @@ -750,10 +750,9 @@ cat <<EOF HDD1830 ==Logik== ==Onda== 80) DAX 1GB MP3/DAB 120) VX747 ==Meizu== - 121) VX767 110) M6SL - 122) VX747+ 111) M6SP + 121) VX767 110) M6SL ==Lyre project== + 122) VX747+ 111) M6SP 130) Lyre proto 1 112) M3 - EOF buildfor=`input`; @@ -2022,6 +2021,28 @@ fi t_manufacturer="ingenic_jz47xx" t_model="onda_vx747" ;; + + 130|lyre_proto1) + target_id=56 + modelname="lyre_proto1" + target="-DLYRE_PROTO1" + memory=64 + arm926ejscc + tool="cp" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.lyre" + appextra="recorder:gui" + plugins="" + swcodec="yes" + toolset=$scramblebitmaptools + boottool="cp" + bootoutput="bootloader-proto1.lyre" + # architecture, manufacturer and model for the target-tree build + t_cpu="arm" + t_manufacturer="at91sam" + t_model="lyre_proto1" + ;; *) echo "Please select a supported target platform!" |