summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure21
-rw-r--r--tools/scramble.c4
2 files changed, 24 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 71bd8d6029..b33c798a3a 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1325,6 +1325,7 @@ cat <<EOF
1325 141) YH-920 170) HD200 ==Lyre project== 1325 141) YH-920 170) HD200 ==Lyre project==
1326 142) YH-925 171) HD300 130) Lyre proto 1 1326 142) YH-925 171) HD300 130) Lyre proto 1
1327 143) YP-S3 131) Mini2440 1327 143) YP-S3 131) Mini2440
1328 144) YP-Z5
1328 ==ROCKCHIP== 1329 ==ROCKCHIP==
1329 ==Application== 180) rk27xx generic ==HiFiMAN== 1330 ==Application== 180) rk27xx generic ==HiFiMAN==
1330 200) SDL 190) HM-60x 1331 200) SDL 190) HM-60x
@@ -3142,6 +3143,26 @@ fi
3142 t_model="yps3" 3143 t_model="yps3"
3143 ;; 3144 ;;
3144 3145
3146 144|samsungypz5)
3147 target_id=90
3148 modelname="samsungypz5"
3149 target="SAMSUNG_YPZ5"
3150 memory=16
3151 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
3152 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
3153 tool="$rootdir/tools/scramble -add=ypz5"
3154 output="rockbox.samsung"
3155 bootoutput="bootloader-ypz5.samsung"
3156 appextra="gui:recorder:radio"
3157 plugins=""
3158 swcodec="yes"
3159 toolset=$scramblebitmaptools
3160 t_cpu="arm"
3161 t_manufacturer="imx233"
3162 t_model="samsung-ypz5"
3163 arm926ejscc
3164 ;;
3165
3145 160|vibe500) 3166 160|vibe500)
3146 target_id=67 3167 target_id=67
3147 modelname="vibe500" 3168 modelname="vibe500"
diff --git a/tools/scramble.c b/tools/scramble.c
index ef7c41befb..ba335d2f2d 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -129,7 +129,7 @@ void usage(void)
129 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n" 129 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n"
130 "\t 747p, x777, nn2g, m244, cli+, fuz2, hd20, hd30,\n" 130 "\t 747p, x777, nn2g, m244, cli+, fuz2, hd20, hd30,\n"
131 "\t ip6g, rk27, clzp, zxf2, zxf3, fuz+, e370, e360,\n" 131 "\t ip6g, rk27, clzp, zxf2, zxf3, fuz+, e370, e360,\n"
132 "\t zxfi, zmoz, zen, zenv)\n"); 132 "\t zxfi, zmoz, zen, zenv, ypz5)\n");
133 printf("\nNo option results in Archos standard player/recorder format.\n"); 133 printf("\nNo option results in Archos standard player/recorder format.\n");
134 134
135 exit(1); 135 exit(1);
@@ -366,6 +366,8 @@ int main (int argc, char** argv)
366 modelnum = 82; 366 modelnum = 82;
367 else if (!strcmp(&argv[1][5], "zxf3")) /* Creative Zen X-Fi3 */ 367 else if (!strcmp(&argv[1][5], "zxf3")) /* Creative Zen X-Fi3 */
368 modelnum = 83; 368 modelnum = 83;
369 else if (!strcmp(&argv[1][5], "ypz5")) /* Samsung YP-Z5 */
370 modelnum = 84;
369 else if (!strcmp(&argv[1][5], "zenv")) /* Creative Zen V */ 371 else if (!strcmp(&argv[1][5], "zenv")) /* Creative Zen V */
370 modelnum = 85; 372 modelnum = 85;
371 else if (!strcmp(&argv[1][5], "zxfi")) /* Creative ZEN X-Fi */ 373 else if (!strcmp(&argv[1][5], "zxfi")) /* Creative ZEN X-Fi */