summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-10-22 00:28:09 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2013-10-22 00:34:44 +0200
commitd3bc64833c76adca4d6300e5b5880ee8ea63de02 (patch)
tree621978b661c875364c878ba31a9cfed61cf55015 /tools
parent9ed980785429db35f51f8d324cc75c23f2e5fb20 (diff)
downloadrockbox-d3bc64833c76adca4d6300e5b5880ee8ea63de02.tar.gz
rockbox-d3bc64833c76adca4d6300e5b5880ee8ea63de02.zip
Initial commit for the Creative ZEN Mozaic
Change-Id: Ib65aad9f5de37e514047955cad7ca40dc0af4f74
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure20
-rw-r--r--tools/scramble.c2
2 files changed, 22 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index ad702aab60..7746044396 100755
--- a/tools/configure
+++ b/tools/configure
@@ -2280,6 +2280,26 @@ fi
2280 arm926ejscc 2280 arm926ejscc
2281 ;; 2281 ;;
2282 2282
2283 97|creativezenmozaic)
2284 target_id=87
2285 modelname="creativezenmozaic"
2286 target="CREATIVE_ZENMOZAIC"
2287 memory=32
2288 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
2289 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
2290 tool="$rootdir/tools/scramble -add=zmoz"
2291 output="rockbox.creative"
2292 bootoutput="bootloader-zenmozaic.creative"
2293 appextra="gui:recorder:radio"
2294 plugins=""
2295 swcodec="yes"
2296 toolset=$scramblebitmaptools
2297 t_cpu="arm"
2298 t_manufacturer="imx233"
2299 t_model="creative-zenmozaic"
2300 arm926ejscc
2301 ;;
2302
2283 50|sansae200) 2303 50|sansae200)
2284 target_id=23 2304 target_id=23
2285 modelname="sansae200" 2305 modelname="sansae200"
diff --git a/tools/scramble.c b/tools/scramble.c
index c29634bb6c..e37bec8195 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -365,6 +365,8 @@ int main (int argc, char** argv)
365 modelnum = 82; 365 modelnum = 82;
366 else if (!strcmp(&argv[1][5], "zxf3")) /* Creative Zen X-Fi3 */ 366 else if (!strcmp(&argv[1][5], "zxf3")) /* Creative Zen X-Fi3 */
367 modelnum = 83; 367 modelnum = 83;
368 else if (!strcmp(&argv[1][5], "zmoz")) /* Creative ZEN Mozaic*/
369 modelnum = 87;
368 else if (!strcmp(&argv[1][5], "e370")) /* Sony NWZ-E370 series */ 370 else if (!strcmp(&argv[1][5], "e370")) /* Sony NWZ-E370 series */
369 modelnum = 88; 371 modelnum = 88;
370 else if (!strcmp(&argv[1][5], "e360")) /* Sony NWZ-E360 series */ 372 else if (!strcmp(&argv[1][5], "e360")) /* Sony NWZ-E360 series */