diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-10-12 16:46:01 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-10-12 16:46:01 +0000 |
| commit | da8bff107e8ed6bf63cc005bfa6c90b12c8b4dd5 (patch) | |
| tree | 13c81d9578d8ba3cda2d7c9d20e2a67ac8bee0d3 /tools | |
| parent | 0f933f62101a8fe8bb841617217f7e866324820d (diff) | |
| download | rockbox-da8bff107e8ed6bf63cc005bfa6c90b12c8b4dd5.zip rockbox-da8bff107e8ed6bf63cc005bfa6c90b12c8b4dd5.tar.gz rockbox-da8bff107e8ed6bf63cc005bfa6c90b12c8b4dd5.tar.bz2 rockbox-da8bff107e8ed6bf63cc005bfa6c90b12c8b4dd5.tar.xz | |
Commit FS#9467 - initial work on port to Sansa Clip by Rafaël Carré and François Dinel. A few cosmetic changes were made by me prior to committing: 1) TAB policing in button-clip.c; 2) Add François Dinel to CREDITS; 3) Add François Dinel as (C) holder in button-target.h (it was previously blank); 4) Add Rockbox header to bootloader/sansa_as3525.c with Rafaël Carré as (C) holder; 5) Change target_id to 50 (next available number) in tools/configure and fixed indentation; 6) Change MODEL_NUMBER in config-clip.h to 50 (next available number); 7) Remove unused in/out macros from system-target.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18782 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 158bef8..1b31615 100755 --- a/tools/configure +++ b/tools/configure @@ -693,6 +693,7 @@ cat <<EOF 32) 7 52) Sansa c200 33) Cowon D2 53) Sansa m200 34) M3/M3L 54) Sansa c100 + 55) Sansa Clip ==Tatung== ==Olympus== ==Logik== 60) Elio TPJ-1022 70) M:Robe 500 80) DAX 1GB MP3/DAB @@ -721,6 +722,7 @@ fi ipodbitmaptools="$toolset scramble bmp2rb" gigabeatbitmaptools="$toolset scramble descramble bmp2rb" tccbitmaptools="$toolset scramble mktccboot bmp2rb" + ams3525bitmaptools="$toolset bmp2rb" # generic is used by IFP, H10, Sansa-e200 genericbitmaptools="$toolset bmp2rb" @@ -1675,6 +1677,25 @@ fi t_model="c100" ;; + 55|Clip|clip) + target_id=50 + modelname="clip" + target="-DSANSA_CLIP" + memory=1 # In fact, 0.3125 + arm9tdmicc + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$bmp2rb_mono" + boottool="cp" + bootoutput="rockbox.bin" + appextra="recorder:gui" + plugins="" + toolset="$ams3525bitmaptools" + t_cpu="arm" + t_manufacturer="as3525" + t_model="clip" + ;; + + 60|tpj1022) target_id=25 modelname="tpj1022" |