summaryrefslogtreecommitdiffstats
path: root/rbutil
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-08-27 16:21:19 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-08-27 16:21:19 +0000
commit463b3ed8b2630d1b9d656dd2a52bbcbd429b4c08 (patch)
tree622e101cddcdad0360625efc647cecbd538fb7dd /rbutil
parent3aeb7fad9a31666f5762644ebcf2725b15b9241f (diff)
downloadrockbox-463b3ed8b2630d1b9d656dd2a52bbcbd429b4c08.tar.gz
rockbox-463b3ed8b2630d1b9d656dd2a52bbcbd429b4c08.zip
Initial framework for the Sandisk Sansa Clip Zip
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30365 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/mkamsboot/mkamsboot.c3
-rw-r--r--rbutil/mkamsboot/mkamsboot.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/rbutil/mkamsboot/mkamsboot.c b/rbutil/mkamsboot/mkamsboot.c
index 715e11d0d5..2682b7b19b 100644
--- a/rbutil/mkamsboot/mkamsboot.c
+++ b/rbutil/mkamsboot/mkamsboot.c
@@ -122,6 +122,7 @@ const struct ams_models ams_identity[] = {
[MODEL_FUZEV2] = { 2, 2, "Fuze", dualboot_fuzev2, sizeof(dualboot_fuzev2), "fuz2", 68 },
[MODEL_FUZE] = { 1, 1, "Fuze", dualboot_fuze, sizeof(dualboot_fuze), "fuze", 43 },
[MODEL_M200V4] = { 4, 1, "m200", dualboot_m200v4, sizeof(dualboot_m200v4), "m2v4", 42 },
+ [MODEL_CLIPZIP] = { 1, 2, "ClipZip", NULL, 0, "clzp", 79 }, /* TODO */
};
@@ -169,6 +170,8 @@ static struct md5sums sansasums[] = {
{ MODEL_FUZEV2, "2.02.26", "d4f6f85c3e4a8ea8f2e5acc421641801" },
{ MODEL_FUZEV2, "2.03.31", "74fb197ccd51707388f3b233402186a6" },
{ MODEL_FUZEV2, "2.03.33", "1599cc73d02ea7fe53fe2d4379c24b66" },
+
+ { MODEL_CLIPZIP, "1.01.12", "45adea0873326b5af34f096e5c402f78" },
};
#define NUM_MD5S (sizeof(sansasums)/sizeof(sansasums[0]))
diff --git a/rbutil/mkamsboot/mkamsboot.h b/rbutil/mkamsboot/mkamsboot.h
index 156315e4e4..263fe9e9c1 100644
--- a/rbutil/mkamsboot/mkamsboot.h
+++ b/rbutil/mkamsboot/mkamsboot.h
@@ -43,6 +43,7 @@ enum {
MODEL_C200V2,
MODEL_CLIPPLUS,
MODEL_FUZEV2,
+ MODEL_CLIPZIP,
/* new models go here */
NUM_MODELS