diff options
| author | Mark Arigo <markarigo@gmail.com> | 2008-01-09 07:24:43 +0000 |
|---|---|---|
| committer | Mark Arigo <markarigo@gmail.com> | 2008-01-09 07:24:43 +0000 |
| commit | e66ddd754fba4171e3fd99c5a1b911ed3f9faa3f (patch) | |
| tree | 918000a401ae36817091cc4561573a5578f87ba5 /tools | |
| parent | f59a327f674c36487ed04e6cf36369a622da7f40 (diff) | |
| download | rockbox-e66ddd754fba4171e3fd99c5a1b911ed3f9faa3f.zip rockbox-e66ddd754fba4171e3fd99c5a1b911ed3f9faa3f.tar.gz rockbox-e66ddd754fba4171e3fd99c5a1b911ed3f9faa3f.tar.bz2 rockbox-e66ddd754fba4171e3fd99c5a1b911ed3f9faa3f.tar.xz | |
Initial commit for the Olympus m:robe 100 port (PP5020). The LCD driver works. The ADC driver was copied from the H10 port (they can probably be combined later), but the battery readings aren't right and it shuts down. The touch pad buttons do not work. Install the bootloader and rockbox the H10 way. Still lots of work to do.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16030 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 29 | ||||
| -rw-r--r-- | tools/scramble.c | 4 |
2 files changed, 32 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index c2c9dca..5055a0f 100755 --- a/tools/configure +++ b/tools/configure @@ -603,6 +603,7 @@ cat <<EOF ==Tatung== ==Olympus== ==Logik== 60) Elio TPJ-1022 70) M:Robe 500 80) DAX 1GB MP3/DAB + 71) M:Robe 100 EOF buildfor=`input`; @@ -1292,6 +1293,34 @@ EOF t_model="mrobe-500" ;; + 71|mrobe100) + target_id=31 + archos="mrobe100" + target="-DMROBE_100" + memory=32 # always + arm7tdmicc + tool="$rootdir/tools/scramble -mi4v2 -model=m100 -type=RBOS" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 0" + bmp2rb_remotemono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_remotenative="$rootdir/tools/bmp2rb -f 0" + output="rockbox.mi4" + appextra="recorder:gui" + archosrom="" + flash="" + plugins="" + swcodec="yes" + boottool="$rootdir/tools/scramble -mi4v2 -model=m100 -type=RBBL" + bootoutput="pp5020.mi4" + # toolset is the tools within the tools directory that we build for + # this particular target. + toolset="$genericbitmaptools scramble" + # architecture, manufacturer and model for the target-tree build + t_cpu="arm" + t_manufacturer="olympus" + t_model="mrobe-100" + ;; + 80|logikdax) target_id=31 archos="logikdax" diff --git a/tools/scramble.c b/tools/scramble.c index ba0eda3..b5aba3f 100644 --- a/tools/scramble.c +++ b/tools/scramble.c @@ -107,7 +107,7 @@ void usage(void) "\t-add=X Rockbox generic \"add-up\" checksum format\n" "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n" "\t ip3g, ip4g, mini, iax5, h10, h10_5gb, tpj2,\n" - "\t c200, e200, giga, m500)\n" + "\t c200, e200, giga, m100, m500)\n" "\nNo option results in Archos standard player/recorder format.\n"); exit(1); @@ -253,6 +253,8 @@ int main (int argc, char** argv) modelnum = 21; else if(!strcmp(&argv[1][5], "m500")) modelnum = 22; + else if(!strcmp(&argv[1][5], "m100")) + modelnum = 23; else { fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); return 2; |