summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/iriver_flash.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 829b49b31c..cecd4990a9 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -165,6 +165,12 @@ bool cfi_get_flash_info(struct flash_info* pInfo)
rb->strcpy(pInfo->name, "SST39VF160");
return true;
}
+ else if (pInfo->id == 0x5B)
+ {
+ pInfo->size = 4096* 1024; /* 4 MiB */
+ rb->strcpy(pInfo->name, "SST39VF3201");
+ return true;
+ }
else
return false;
}