summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure36
-rw-r--r--tools/scramble.c4
2 files changed, 31 insertions, 9 deletions
diff --git a/tools/configure b/tools/configure
index b28d3c4c97..3c4145f3da 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1276,14 +1276,14 @@ cat <<EOF
1276 123) VX777 112) M3 62) Sansa Clip+ 1276 123) VX777 112) M3 62) Sansa Clip+
1277 63) Sansa Fuze v2 1277 63) Sansa Fuze v2
1278 ==Samsung== ==Tatung== 64) Sansa Fuze+ 1278 ==Samsung== ==Tatung== 64) Sansa Fuze+
1279 140) YH-820 150) Elio TPJ-1022 1279 140) YH-820 150) Elio TPJ-1022 65) Sansa Clip Zip
1280 141) YH-920 ==Logik== 1280 141) YH-920
1281 142) YH-925 ==Packard Bell== 80) DAX 1GB MP3/DAB 1281 142) YH-925 ==Packard Bell== ==Logik==
1282 143) YP-S3 160) Vibe 500 1282 143) YP-S3 160) Vibe 500 80) DAX 1GB MP3/DAB
1283 ==Lyre project== 1283
1284==Application== ==MPIO== 130) Lyre proto 1 1284==Application== ==MPIO== ==Lyre project==
1285 200) SDL 170) HD200 131) Mini2440 1285 200) SDL 170) HD200 130) Lyre proto 1
1286 201) Android 171) HD300 1286 201) Android 171) HD300 131) Mini2440
1287 202) Nokia N8xx 1287 202) Nokia N8xx
1288 203) Nokia N900 ==ROCKCHIP== 1288 203) Nokia N900 ==ROCKCHIP==
1289 204) Pandora 180) rk27xx generic 1289 204) Pandora 180) rk27xx generic
@@ -2525,6 +2525,26 @@ fi
2525 arm926ejscc 2525 arm926ejscc
2526 ;; 2526 ;;
2527 2527
2528 65|sansaclipzip)
2529 target_id=68
2530 modelname="sansaclipzip"
2531 target="-DSANSA_CLIPZIP"
2532 memory=8 # not sure
2533 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
2534 bmp2rb_native="$rootdir/tools/bmp2rb -f 5"
2535 tool="$rootdir/tools/scramble -add=clzp"
2536 output="rockbox.sansa"
2537 bootoutput="bootloader-clipzip.sansa"
2538 appextra="recorder:gui:radio"
2539 plugins="yes"
2540 swcodec="yes"
2541 toolset=$scramblebitmaptools
2542 t_cpu="arm"
2543 t_manufacturer="as3525"
2544 t_model="sansa-clipzip"
2545 arm926ejscc
2546 ;;
2547
2528 150|tatungtpj1022) 2548 150|tatungtpj1022)
2529 target_id=25 2549 target_id=25
2530 modelname="tatungtpj1022" 2550 modelname="tatungtpj1022"
diff --git a/tools/scramble.c b/tools/scramble.c
index 683973321c..126fa7baa7 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -126,7 +126,7 @@ void usage(void)
126 printf("\t 9200, 1630, 6330, ldax, m200, c100, clip, e2v2,\n" 126 printf("\t 9200, 1630, 6330, ldax, m200, c100, clip, e2v2,\n"
127 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n" 127 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n"
128 "\t 747p, x777, nn2g, m244, cli+, fuz2, hd20, hd30,\n" 128 "\t 747p, x777, nn2g, m244, cli+, fuz2, hd20, hd30,\n"
129 "\t ip6g, rk27)\n"); 129 "\t ip6g, rk27, clzp)\n");
130 printf("\nNo option results in Archos standard player/recorder format.\n"); 130 printf("\nNo option results in Archos standard player/recorder format.\n");
131 131
132 exit(1); 132 exit(1);
@@ -339,6 +339,8 @@ int main (int argc, char** argv)
339 modelnum = 72; 339 modelnum = 72;
340 else if (!strcmp(&argv[1][5], "rk27")) /* rockchip 27xx generic */ 340 else if (!strcmp(&argv[1][5], "rk27")) /* rockchip 27xx generic */
341 modelnum = 73; 341 modelnum = 73;
342 else if (!strcmp(&argv[1][5], "clzp")) /* Sansa Clip Zip */
343 modelnum = 79;
342 else { 344 else {
343 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 345 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
344 return 2; 346 return 2;