diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-10-22 00:28:09 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-10-22 00:34:44 +0200 |
| commit | d3bc64833c76adca4d6300e5b5880ee8ea63de02 (patch) | |
| tree | 621978b661c875364c878ba31a9cfed61cf55015 /tools | |
| parent | 9ed980785429db35f51f8d324cc75c23f2e5fb20 (diff) | |
| download | rockbox-d3bc64833c76adca4d6300e5b5880ee8ea63de02.zip rockbox-d3bc64833c76adca4d6300e5b5880ee8ea63de02.tar.gz rockbox-d3bc64833c76adca4d6300e5b5880ee8ea63de02.tar.bz2 rockbox-d3bc64833c76adca4d6300e5b5880ee8ea63de02.tar.xz | |
Initial commit for the Creative ZEN Mozaic
Change-Id: Ib65aad9f5de37e514047955cad7ca40dc0af4f74
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 20 | ||||
| -rw-r--r-- | tools/scramble.c | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index ad702aa..7746044 100755 --- a/tools/configure +++ b/tools/configure @@ -2280,6 +2280,26 @@ fi arm926ejscc ;; + 97|creativezenmozaic) + target_id=87 + modelname="creativezenmozaic" + target="CREATIVE_ZENMOZAIC" + memory=32 + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + tool="$rootdir/tools/scramble -add=zmoz" + output="rockbox.creative" + bootoutput="bootloader-zenmozaic.creative" + appextra="gui:recorder:radio" + plugins="" + swcodec="yes" + toolset=$scramblebitmaptools + t_cpu="arm" + t_manufacturer="imx233" + t_model="creative-zenmozaic" + arm926ejscc + ;; + 50|sansae200) target_id=23 modelname="sansae200" diff --git a/tools/scramble.c b/tools/scramble.c index c29634b..e37bec8 100644 --- a/tools/scramble.c +++ b/tools/scramble.c @@ -365,6 +365,8 @@ int main (int argc, char** argv) modelnum = 82; else if (!strcmp(&argv[1][5], "zxf3")) /* Creative Zen X-Fi3 */ modelnum = 83; + else if (!strcmp(&argv[1][5], "zmoz")) /* Creative ZEN Mozaic*/ + modelnum = 87; else if (!strcmp(&argv[1][5], "e370")) /* Sony NWZ-E370 series */ modelnum = 88; else if (!strcmp(&argv[1][5], "e360")) /* Sony NWZ-E360 series */ |