summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/config-iaudiox5.h2
-rw-r--r--tools/scramble.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/firmware/export/config-iaudiox5.h b/firmware/export/config-iaudiox5.h
index 267fb33ce8..a8456bc846 100644
--- a/firmware/export/config-iaudiox5.h
+++ b/firmware/export/config-iaudiox5.h
@@ -3,7 +3,7 @@
3 */ 3 */
4 4
5/* For Rolo and boot loader */ 5/* For Rolo and boot loader */
6#define MODEL_NUMBER 1 6#define MODEL_NUMBER 10
7 7
8/* define this if you have recording possibility */ 8/* define this if you have recording possibility */
9/*#define HAVE_RECORDING 1*/ 9/*#define HAVE_RECORDING 1*/
diff --git a/tools/scramble.c b/tools/scramble.c
index 642080e699..e289fcdc24 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -72,7 +72,7 @@ void usage(void)
72 "\t-iaudio iAudio format\n" 72 "\t-iaudio iAudio format\n"
73 "\t-add=X Rockbox generic \"add-up\" checksum format\n" 73 "\t-add=X Rockbox generic \"add-up\" checksum format\n"
74 "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd\n" 74 "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd\n"
75 "\t ip3g, ip4g, mini)\n" 75 "\t ip3g, ip4g, mini, x5)\n"
76 "\nNo option results in Archos standard player/recorder format.\n"); 76 "\nNo option results in Archos standard player/recorder format.\n");
77 77
78 exit(1); 78 exit(1);
@@ -180,6 +180,8 @@ int main (int argc, char** argv)
180 modelnum = 8; 180 modelnum = 8;
181 else if(!strcmp(&argv[1][5], "mini")) 181 else if(!strcmp(&argv[1][5], "mini"))
182 modelnum = 9; 182 modelnum = 9;
183 else if(!strcmp(&argv[1][5], "iax5"))
184 modelnum = 10;
183 else { 185 else {
184 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 186 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
185 return 2; 187 return 2;