Change the MODEL_NUMBER for various new ports so that it is unique again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18684 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
82131ac98c
commit
6d5b54081a
8 changed files with 15 additions and 13 deletions
|
@ -4,7 +4,7 @@
|
|||
#define TARGET_TREE /* this target is using the target tree system */
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 27
|
||||
#define MODEL_NUMBER 33
|
||||
|
||||
#define MODEL_NAME "Logik DAX MP3/DAB"
|
||||
|
||||
|
@ -94,6 +94,8 @@
|
|||
/* Define this if you have ATA power-off control */
|
||||
#define HAVE_ATA_POWER_OFF
|
||||
|
||||
#define HAVE_FAT16SUPPORT
|
||||
|
||||
/* Define this to the CPU frequency */
|
||||
#define CPU_FREQ 120000000
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#define TARGET_TREE /* this target is using the target tree system */
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 1
|
||||
#define MODEL_NUMBER 39
|
||||
|
||||
#define MODEL_NAME "Meizu M3"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#define TARGET_TREE /* this target is using the target tree system */
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 1
|
||||
#define MODEL_NUMBER 38
|
||||
|
||||
#define MODEL_NAME "Meizu M6SL"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#define TARGET_TREE /* this target is using the target tree system */
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 1
|
||||
#define MODEL_NUMBER 37
|
||||
|
||||
#define MODEL_NAME "Meizu M6SP"
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#define MODEL_NAME "Onda VX747"
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 30
|
||||
#define MODEL_NUMBER 35
|
||||
|
||||
/* define this if you use an ATA controller */
|
||||
//#define HAVE_ATA
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#define MODEL_NAME "Onda VX767"
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 31
|
||||
#define MODEL_NUMBER 36
|
||||
|
||||
/* define this if you use an ATA controller */
|
||||
//#define HAVE_ATA
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#define TARGET_TREE /* this target is using the target tree system */
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 26
|
||||
#define MODEL_NUMBER 34
|
||||
#define MODEL_NAME "Philips GoGear SA200"
|
||||
|
||||
#define HW_SAMPR_CAPS (SAMPR_CAP_44)
|
||||
|
|
|
@ -275,16 +275,16 @@ int main (int argc, char** argv)
|
|||
modelnum = 24;
|
||||
else if(!strcmp(&argv[1][5], "iam3"))
|
||||
modelnum = 25;
|
||||
else if(!strcmp(&argv[1][5], "9200")) /* Philips SA9200 */
|
||||
modelnum = 26;
|
||||
else if (!strcmp(&argv[1][5], "ldax"))
|
||||
modelnum = 27;
|
||||
else if (!strcmp(&argv[1][5], "m200"))
|
||||
modelnum = 29;
|
||||
modelnum = 29;
|
||||
else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */
|
||||
modelnum = 31;
|
||||
else if (!strcmp(&argv[1][5], "i7"))
|
||||
modelnum = 32;
|
||||
modelnum = 32;
|
||||
else if (!strcmp(&argv[1][5], "ldax"))
|
||||
modelnum = 33;
|
||||
else if(!strcmp(&argv[1][5], "9200")) /* Philips SA9200 */
|
||||
modelnum = 34;
|
||||
else {
|
||||
fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
|
||||
return 2;
|
||||
|
|
Loading…
Reference in a new issue