summaryrefslogtreecommitdiffstats
path: root/rbutil/rbutilqt/rbutil.ini
blob: f92d7466140596ebbbdbc8692614cd0aeccafa61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
[general]
; server information
build_info_url=http://download.rockbox.org/build-info
; genlang -- used to get list of strings (only really old builds)
genlang_url=http://www.rockbox.org/genlang/?lang=%LANG%&t=%TARGET%&rev=%REVISION%&f=%FEATURES%
; themes
themes_url=http://themes.rockbox.org/
themes_info_url=http://themes.rockbox.org/rbutilqt.php?target=%TARGET%&release=%RELEASE%&revision=%REVISION%&rbutilver=%RBUTILVER%

; other
doom_url=http://download.rockbox.org/useful/rockdoom.zip
duke3d_url=http://download.rockbox.org/useful/duke3d.zip
quake_url=http://download.rockbox.org/useful/quake.zip
puzzfonts_url=http://download.rockbox.org/useful/sgt-fonts.zip
wolf3d_url=http://download.rockbox.org/useful/wolf3d.zip
xworld_url=http://download.rockbox.org/useful/xworld.zip
rbutil_url=http://download.rockbox.org/rbutil/

[bootloader]
info_url=http://download.rockbox.org/bootloader/bootloaders-info
download_url=http://download.rockbox.org/bootloader

[release]
build_url=https://download.rockbox.org/release/%RELVERSION%/rockbox-%MODEL%-%RELVERSION%.zip
voice_url=https://download.rockbox.org/release/%RELVERSION%/%MODEL%-%RELVERSION%-%LANGUAGE%.zip
font_url=https://download.rockbox.org/release/%RELVERSION%/rockbox-fonts-%RELVERSION%.zip
manual_url=https://download.rockbox.org/release/%RELVERSION%/rockbox-%MODEL%%FORMAT%

[release-candidate]
build_url=https://download.rockbox.org/release-candidate/%RELVERSION%/rockbox-%MODEL%-%RELVERSION%.zip
voice_url=https://download.rockbox.org/release-candidate/%RELVERSION%/%MODEL%-%RELVERSION%-english.zip
font_url=https://download.rockbox.org/release-candidate/%RELVERSION%/rockbox-fonts-%RELVERSION%.zip
manual_url=https://download.rockbox.org/release-candidate/%RELVERSION%/rockbox-%MODEL%%FORMAT%

[development]
build_url=http://build.rockbox.org/data/rockbox-%MODEL%.zip
; we don't have voices for dev builds.
voice_url=https://download.rockbox.org/daily/voices/%MODEL%-%LANGUAGE%.zip
font_url=https://download.rockbox.org/daily/fonts/rockbox-fonts.zip
; manual is only built daily, use that one instead.
manual_url=https://download.rockbox.org/daily/manual/rockbox-%MODEL%%FORMAT%

[daily]
build_url=https://download.rockbox.org/daily/%MODEL%/rockbox-%MODEL%.zip
voice_url=https://download.rockbox.org/daily/voices/%MODEL%-%LANGUAGE%.zip
font_url=https://download.rockbox.org/daily/fonts/rockbox-fonts.zip
manual_url=https://download.rockbox.org/daily/manual/rockbox-%MODEL%%FORMAT%

; [platforms] is used to determine the order in the device tree.
; Only devices present in this section will get displayed!
[platforms]
platform01=archosplayer
platform02=archosrecorder
platform03=archosrecorder.8mb
platform04=archosrecorderv2
platform05=archosfmrecorder
platform06=archosfmrecorder.8mb
platform07=archosondiosp
platform08=archosondiofm
platform10=iriverh100
platform11=iriverh120
platform12=iriverh300
platform13=iriverh10_5gb
platform14=iriverh10_5gb.mtp
platform15=iriverh10
platform20=ipod1g2g
platform21=ipod3g
platform22=ipod4g
platform23=ipodcolor
platform24=ipodvideo
platform25=ipod6g
platform26=ipodmini1g
platform27=ipodmini2g
platform28=ipodnano1g
platform29=ipodnano2g
platform30=iaudiox5
platform31=iaudiom5
platform32=iaudiox5.v
platform33=iaudiom3
platform40=gigabeatfx
platform41=gigabeats
platform44=ondavx747
platform45=ondavx747p
platform46=ondavx777
platform50=sansae200
platform51=sansae200v2
platform52=sansac200
platform53=sansac200v2
platform54=sansafuze
platform55=sansafuzev2
platform56=sansafuzeplus
platform57=sansaclip
platform58=sansaclipv2
platform59=sansaclipplus
platform60=sansaclipzip
platform61=sansam200v4
platform65=mrobe100
platform70=samsungyh820
platform71=samsungyh920
platform72=samsungyh925
platform73=cowond2
platform80=vibe500
platform90=mpiohd200
platform101=gogearhdd1630
platform102=gogearhdd6330
platform103=gogearsa9200
platform110=creativezenxfi3
platform120=xduoox3
platform130=xduoox3ii
platform131=xduoox20
platform132=agptekrocker
platform133=aigoerosq
platform134=aigoerosk
platform135=agptekh3
platform136=hifiwalkerh2
platform137=surfansf20

; devices sections
;
; Each device has a section here that corresponds to an entry in the
; [platforms] section.  The section is using the same string configure uses. It
; might add a postfix (separated with a .) to distinguish variants like
; recorder vs. recorder8mb
;
; name: the human readable name that is displayed to the user
; bootloadermethod: the installation method for the bootloader. See
;                   base/bootloader* classes
; bootloadername: name of the bootloader file on the server
; bootloaderfile: name of the bootloader file on the device
; buildserver_modelname: target string used by the build server. Not
;                        necessarily identical to configure string.
; manualname: different target name to use for manual. See Iriver H100 series fe.
; brand: the manufacturer of the device. Used to group in device tree
; encoder: encoder to use for talk clips and voice files
; usbid: VID / PID value for detecting the player
; usberror: VID / PID value for detecting the player in an incompatible mode
;           (MTP vs MSC)
; status: allows hiding the target from the list of devices.
;
[archosplayer]
name="Jukebox Player 6000 / Jukebox Studio 5 / 10 / 20"
buildserver_modelname=archosplayer
bootloadermethod=none
bootloadername=
manualname=
brand=Archos
usbid=0x05ab0031
configure_modelname=archosplayer
playerpic=archosplayer
encoder=lame

[archosrecorder]
name="Jukebox Recorder 6 / 10 / 15 / 20"
buildserver_modelname=archosrecorder
bootloadermethod=none
bootloadername=
manualname=
brand=Archos
usbid=0x05ab0031,0x05ab0060
configure_modelname=archosrecorder
playerpic=archosrecorder
encoder=lame

[archosrecorder.8mb]
name="Jukebox Recorder 6 / 10 / 15 / 20 (with 8MiB memory)"
buildserver_modelname=archosrecorder8mb
bootloadermethod=none
bootloadername=
manualname=recorder
brand=Archos
usbid=0x05ab0031,0x05ab0060
configure_modelname=archosrecorder
playerpic=archosrecorder
encoder=lame

[archosrecorderv2]
name="Jukebox Recorder v2 (20GB)"
buildserver_modelname=archosrecorderv2
bootloadermethod=none
bootloadername=
manualname=archosfmrecorder
brand=Archos
usbid=0x05ab0060
configure_modelname=archosrecorderv2
playerpic=archosrecorderv2
encoder=lame

[archosfmrecorder]
name="Jukebox Recorder FM"
buildserver_modelname=archosfmrecorder
bootloadermethod=none
bootloadername=
manualname=
brand=Archos
usbid=0x05ab0060
configure_modelname=archosfmrecorder
playerpic=archosfmrecorder
encoder=lame

[archosfmrecorder.8mb]
name="Jukebox Recorder FM (with 8MiB memory)"
buildserver_modelname=archosfmrecorder8mb
bootloadermethod=none
bootloadername=
manualname=archosfmrecorder
brand=Archos
usbid=0x05ab0060
configure_modelname=archosfmrecorder
playerpic=archosfmrecorder
encoder=lame

[archosondiosp]
name="Ondio SP"
buildserver_modelname=archosondiosp
bootloadermethod=none
bootloadername=
manualname=
brand=Archos
usbid=0x058f9330
configure_modelname=archosondiosp
playerpic=archosondiosp
encoder=lame

[archosondiofm]
name="Ondio FM"
buildserver_modelname=archosondiofm
bootloadermethod=none
bootloadername=
manualname=
brand=Archos
usbid=0x058f9330
configure_modelname=archosondiofm
playerpic=archosondiofm
encoder=lame

[iriverh100]
name="iHP100 / iHP110"
buildserver_modelname=iriverh100
bootloadermethod=hex
bootloadername=/iriver/bootloader-h100.bin
bootloaderfile=/ihp_100.hex
bootloaderfilter=*.hex *.zip
manualname=iriverh100
brand=Iriver
usbid=0x10063001
configure_modelname=iriverh100
playerpic=iriverh100
encoder=rbspeex

[iriverh120]
name="iHP120 / iHP140 / H120 / H140"
buildserver_modelname=iriverh120
bootloadermethod=hex
bootloadername=/iriver/bootloader-h120.bin
bootloaderfile=/ihp_120.hex
bootloaderfilter=*.hex *.zip
manualname=iriverh100
brand=Iriver
usbid=0x10063002
configure_modelname=iriverh120
playerpic=iriverh100
encoder=rbspeex

[iriverh300]
name="H320 / H340"
buildserver_modelname=iriverh300
bootloadermethod=hex
bootloadername=/iriver/bootloader-h300.bin
bootloaderfile=/H300.hex
bootloaderfilter=*.hex *.zip
manualname=iriverh300
brand=Iriver
usbid=0x10063003
configure_modelname=iriverh300
playerpic=iriverh300
encoder=rbspeex

[iriverh10_5gb]
name="H10 (5 / 6GB) UMS"
buildserver_modelname=iriverh10_5gb
bootloadermethod=mi4
bootloadername=/iriver/H10.mi4
bootloaderfile=/System/H10.mi4, /System/H10EMP.mi4
manualname=
brand=Iriver
usbid=0x41022002
configure_modelname=iriverh10_5gb
playerpic=iriverh10_5gb
encoder=rbspeex

[iriverh10_5gb.mtp]
name="H10 (5 / 6GB) MTP"
buildserver_modelname=iriverh10_5gb
bootloadermethod=mi4
bootloadername=/iriver/H10_5GB-MTP/H10.mi4
bootloaderfile=/System/H10.mi4, /System/H10EMP.mi4
manualname=
brand=Iriver
usbid=0x41022105, 0x41022102
configure_modelname=iriverh10_5gb
playerpic=iriverh10_5gb
encoder=rbspeex

[iriverh10]
name="H10 (20GB)"
buildserver_modelname=iriverh10
bootloadermethod=mi4
bootloadername=/iriver/H10_20GC.mi4
bootloaderfile=/System/H10_20GC.mi4
manualname=
brand=Iriver
usbid=0x0b7000ba
usberror=0x41022101
configure_modelname=iriverh10
playerpic=iriverh10
encoder=rbspeex

[ipod1g2g]
name="Ipod (1st / 2nd gen)"
buildserver_modelname=ipod1g2g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipod1g2g.ipod
manualname=
brand=Apple
; no usb
configure_modelname=ipod1g2g
playerpic=ipod1g2g
encoder=rbspeex

[ipodcolor]
name="Ipod Color / Photo / U2 (4th gen)"
buildserver_modelname=ipodcolor
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipodcolor.ipod
manualname=
brand=Apple
usbid=0x05ac1204
configure_modelname=ipodcolor
playerpic=ipodcolor
encoder=rbspeex

[ipodnano1g]
name="Ipod Nano (1st gen)"
buildserver_modelname=ipodnano1g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipodnano1g.ipod
manualname=
brand=Apple
usbid=0x05ac120a
configure_modelname=ipodnano1g
playerpic=ipodnano1g
encoder=rbspeex

[ipodnano2g]
name="Ipod Nano (2nd gen)"
buildserver_modelname=ipodnano2g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipodnano2g.ipodx
manualname=
brand=Apple
usbid=0x05ac1260
configure_modelname=ipodnano2g
playerpic=ipodnano2g
encoder=rbspeex

[ipod4g]
name="Ipod (4th gen, greyscale)"
buildserver_modelname=ipod4g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipod4g.ipod
manualname=
brand=Apple
usbid=0x05ac1203
configure_modelname=ipod4g
playerpic=ipod4g
encoder=rbspeex

[ipodvideo]
name="Ipod Video (5th gen)"
buildserver_modelname=ipodvideo
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipodvideo.ipod
manualname=
brand=Apple
usbid=0x05ac1209
configure_modelname=ipodvideo
playerpic=ipodvideo
encoder=rbspeex

[ipod6g]
name="Ipod Classic (6th gen)"
buildserver_modelname=ipod6g
bootloadermethod=s5l
bootloadername=/ipod/bootloader-ipod6g.ipod
manualname=
brand=Apple
usbid=0x05ac1261
configure_modelname=ipod6g
playerpic=ipod6g
encoder=rbspeex

[ipod3g]
name="Ipod (3rd gen)"
buildserver_modelname=ipod3g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipod3g.ipod
manualname=
brand=Apple
usbid=0x05ac1201
configure_modelname=ipod3g
playerpic=ipod3g
encoder=rbspeex

[ipodmini1g]
name="Ipod Mini (1st gen)"
buildserver_modelname=ipodmini1g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipodmini1g.ipod
brand=Apple
usbid=0x05ac1205
configure_modelname=ipodmini1g
playerpic=ipodmini1g
encoder=rbspeex

[ipodmini2g]
name="Ipod Mini (2nd gen)"
buildserver_modelname=ipodmini2g
bootloadermethod=ipod
bootloadername=/ipod/bootloader-ipodmini2g.ipod
manualname=ipodmini1g
brand=Apple
usbid=0x05ac1205
configure_modelname=ipodmini2g
playerpic=ipodmini1g
encoder=rbspeex

[iaudiox5]
name="iAudio X5 / X5L"
buildserver_modelname=iaudiox5
bootloadermethod=file
bootloadername=/iaudio/x5_fw.bin
bootloaderfile=/FIRMWARE/x5_fw.bin
manualname=
brand=Cowon
usbid=0x0e210510, 0x0e210513
configure_modelname=iaudiox5
playerpic=iaudiox5
encoder=rbspeex

[iaudiox5.v]
name="iAudio X5V"
buildserver_modelname=iaudiox5
bootloadermethod=file
bootloadername=/iaudio/x5v_fw.bin
bootloaderfile=/FIRMWARE/x5v_fw.bin
manualname=
brand=Cowon
usbid=0x0e210510, 0x0e210513
configure_modelname=iaudiox5
playerpic=iaudiox5
encoder=rbspeex

[iaudiom5]
name="iAudio M5 / M5L"
buildserver_modelname=iaudiom5
bootloadermethod=file
bootloadername=/iaudio/m5_fw.bin
bootloaderfile=/FIRMWARE/m5_fw.bin
manualname=
brand=Cowon
usbid=0x0e210520
configure_modelname=iaudiom5
playerpic=iaudiom5
encoder=rbspeex

[iaudiom3]
name="iAudio M3 / M3L"
buildserver_modelname=iaudiom3
bootloadermethod=file
bootloadername=/iaudio/cowon_m3.bin
bootloaderfile=/FIRMWARE/cowon_m3.bin
manualname=
brand=Cowon
usbid=0x0e210500
configure_modelname=iaudiom3
playerpic=iaudiom3
encoder=rbspeex

[gigabeatfx]
name="Gigabeat F / X"
buildserver_modelname=gigabeatfx
bootloadermethod=file
bootloadername=/toshiba/gigabeat-fx/FWIMG01.DAT
bootloaderfile=/GBSYSTEM/FWIMG/FWIMG01.DAT
manualname=
brand=Toshiba
usbid=0x09300009
configure_modelname=gigabeatfx
playerpic=gigabeatfx
encoder=rbspeex

[gigabeats]
name="Gigabeat S"
buildserver_modelname=gigabeats
bootloadermethod=none
manualname=
brand=Toshiba
usbid=0x09300010
configure_modelname=gigabeats
playerpic=gigabeats
encoder=rbspeex
status=disabled

[sansae200]
name="Sansa e200v1 series"
buildserver_modelname=sansae200
bootloadermethod=sansa
bootloadername=/sandisk-sansa/e200/PP5022.mi4
manualname=
brand=Sandisk
usbid=0x07817421
usberror=0x07817420
configure_modelname=sansae200
playerpic=sansae200
encoder=rbspeex

[sansac200]
name="Sansa c200v1 series"
buildserver_modelname=sansac200
bootloadermethod=sansa
bootloadername=/sandisk-sansa/c200/firmware.mi4
manualname=
brand=Sandisk
usbid=0x07817450, 0x07817451
configure_modelname=sansac200
playerpic=sansac200
encoder=rbspeex

[sansae200v2]
name="Sansa e200v2 series"
buildserver_modelname=sansae200v2
bootloadermethod=ams
bootloadername=/sandisk-sansa/e200v2/bootloader-e200v2.sansa
bootloaderfile=/e200pa.bin,/e200pe.bin,/e200pf.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x07817423
usberror=0x07817422
configure_modelname=sansae200v2
playerpic=sansae200
encoder=rbspeex

[sansac200v2]
name="Sansa c200v2 series"
buildserver_modelname=sansac200v2
bootloadermethod=ams
bootloadername=/sandisk-sansa/c200v2/bootloader-c200v2.sansa
bootloaderfile=/c200pa.bin,/c200pe.bin,/c200pf.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x07817453
usberror=0x07817452
configure_modelname=sansac200v2
playerpic=sansac200
encoder=rbspeex

[sansafuze]
name="Sansa Fuze"
buildserver_modelname=sansafuze
bootloadermethod=ams
bootloadername=/sandisk-sansa/fuze/bootloader-fuze.sansa
bootloaderfile=/fuzea.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x078174c1
usberror=0x078174c0
configure_modelname=sansafuze
playerpic=sansafuze
encoder=rbspeex

[sansafuzev2]
name="Sansa Fuze V2"
buildserver_modelname=sansafuzev2
bootloadermethod=ams
bootloadername=/sandisk-sansa/fuzev2/bootloader-fuzev2.sansa
bootloaderfile=/fuzpa.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x078174c3
usberror=0x078174c2
configure_modelname=sansafuzev2
playerpic=sansafuze
encoder=rbspeex

[sansafuzeplus]
name="Sansa Fuze+"
buildserver_modelname=sansafuzeplus
bootloadermethod=imx
bootloadername=/sandisk-sansa/fuzeplus/bootloader-fuzeplus.sansa
bootloaderfile=/firmware.sb
bootloaderfilter=*.sb *.zip
manualname=
brand=Sandisk
usbid=0x078174e1
usberror=
configure_modelname=sansafuzeplus
playerpic=sansafuzeplus
encoder=rbspeex

[sansam200v4]
name="Sansa m200v4"
buildserver_modelname=sansam200v4
bootloadermethod=ams
bootloadername=/sandisk-sansa/m200v4/bootloader-m200v4.sansa
bootloaderfile=/m200a.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=
usberror=
configure_modelname=sansam200v4
playerpic=sansam200v4
encoder=rbspeex
status=disabled

[sansaclip]
name="Sansa Clip"
buildserver_modelname=sansaclip
bootloadermethod=ams
bootloadername=/sandisk-sansa/clip/bootloader-clip.sansa
bootloaderfile=/m300a.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x07817433
usberror=0x07817432
configure_modelname=sansaclip
playerpic=sansaclip
encoder=rbspeex

[sansaclipv2]
name="Sansa Clip V2"
buildserver_modelname=sansaclipv2
bootloadermethod=ams
bootloadername=/sandisk-sansa/clipv2/bootloader-clipv2.sansa
bootloaderfile=/m30pa.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x07817435
usberror=0x07817434
configure_modelname=sansaclipv2
playerpic=sansaclip
encoder=rbspeex

[sansaclipplus]
name="Sansa Clip+"
buildserver_modelname=sansaclipplus
bootloadermethod=ams
bootloadername=/sandisk-sansa/clipplus/bootloader-clipplus.sansa
bootloaderfile=/clppa.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x078174d1
usberror=0x078174d0
configure_modelname=sansaclipplus
playerpic=sansaclipplus
encoder=rbspeex

[sansaclipzip]
name="Sansa Clip Zip"
buildserver_modelname=sansaclipzip
bootloadermethod=ams
bootloadername=/sandisk-sansa/clipzip/bootloader-clipzip.sansa
bootloaderfile=/clpza.bin
bootloaderfilter=*.bin *.zip
manualname=
brand=Sandisk
usbid=0x078174e5
usberror=0x078174e4
configure_modelname=sansaclipzip
playerpic=sansaclipzip
encoder=rbspeex

[mrobe100]
name="m:robe100"
buildserver_modelname=mrobe100
bootloadermethod=mi4
bootloadername=/olympus/mrobe100/pp5020.mi4
bootloaderfile=/System/pp5020.mi4
manualname=
brand=Olympus
usbid=0x07b40280
configure_modelname=mrobe100
playerpic=mrobe100
encoder=rbspeex

[ondavx747]
name="VX747"
buildserver_modelname=ondavx747
bootloadermethod=chinachip
bootloadername=/onda/vx747/ccpmp.bin
bootloaderfile=/SG301.HXF
bootloaderfilter=*.hxf *.zip
manualname=
brand=Onda
usbid=0x07c4a4a5
configure_modelname=ondavx747
playerpic=vx747
encoder=rbspeex
status=disabled

[ondavx747p]
name="VX747+"
buildserver_modelname=ondavx747p
bootloadermethod=chinachip
bootloadername=/onda/vx747p/ccpmp.bin
bootloaderfile=/SG301.HXF
bootloaderfilter=*.hxf *.zip
manualname=
brand=Onda
usbid=0x07c4a4a5
configure_modelname=ondavx747p
playerpic=vx747
encoder=rbspeex
status=disabled

[ondavx777]
name="VX777"
buildserver_modelname=ondavx777
bootloadermethod=chinachip
bootloadername=/onda/vx777/ccpmp.bin
bootloaderfile=/VX777.HXF
bootloaderfilter=*.hxf *.zip
manualname=
brand=Onda
usbid=0x07c4a4a5
configure_modelname=ondavx777
playerpic=vx777
encoder=rbspeex
status=disabled

[samsungyh820]
name="YH-820"
buildserver_modelname=samsungyh820
bootloadermethod=mi4
bootloadername=/samsung/yh820/FW_YH820.mi4
bootloaderfile=/SYSTEM/FW_YH820.mi4
manualname=
brand=Samsung
usbid=0x04e85023
configure_modelname=samsungyh820
playerpic=samsungyh820
encoder=rbspeex

[samsungyh920]
name="YH-920"
buildserver_modelname=samsungyh920
bootloadermethod=mi4
bootloadername=/samsung/yh920/PP5020.mi4
bootloaderfile=/SYSTEM/FW_YH920.mi4, /SYSTEM/PP5020.mi4
manualname=
brand=Samsung
usbid=0x04e85022, 0x04e8501d
configure_modelname=samsungyh920
playerpic=samsungyh920
encoder=rbspeex

[samsungyh925]
name="YH-925"
buildserver_modelname=samsungyh925
bootloadermethod=mi4
bootloadername=/samsung/yh925/FW_YH925.mi4
bootloaderfile=/SYSTEM/FW_YH925.mi4
manualname=
brand=Samsung
usbid=0x04e85024
configure_modelname=samsungyh925
playerpic=samsungyh925
encoder=rbspeex

[cowond2]
name="D2"
buildserver_modelname=cowond2
bootloadermethod=tcc
bootloadername=/cowon/d2/bootloader-cowond2.bin
bootloaderfile=/
bootloaderfilter=*.bin *.zip
manualname=
brand=Cowon
usbid=0x0e210800, 0x0e210860, 0x0e210870, 0x0e210880, 0x0e210890
usberror=0x0e210801, 0x0e210861, 0x0e210871, 0x0e210881, 0x0e210891
configure_modelname=cowond2
playerpic=cowond2
encoder=rbspeex
status=disabled

[vibe500]
name="Vibe 500"
buildserver_modelname=vibe500
bootloadermethod=mi4
bootloadername=/vibe500/jukebox.mi4
bootloaderfile=/System/jukebox.mi4
manualname=
brand=Packard Bell
usbid=0x04098038
usberror=0x04098039
configure_modelname=vibe500
playerpic=vibe500
encoder=rbspeex

[mpiohd200]
name="MPIO HD200"
buildserver_modelname=mpiohd200
bootloadermethod=mpio
bootloadername=/mpiohd200/bootloader.mpio
bootloaderfile=/SYSTEM/HD200_UPG.SYS
bootloaderfilter=*.bin *.zip
manualname=
brand=MPIO
usbid=0x27351004
configure_modelname=mpiohd200
playerpic=mpiohd200
encoder=rbspeex

[mpiohd300]
name="MPIO HD300"
buildserver_modelname=mpiohd300
bootloadermethod=mpio
bootloadername=/mpiohd300/bootloader.mpio
bootloaderfile=/SYSTEM/HD300_UPG.SYS
bootloaderfilter=*.bin *.zip
manualname=
brand=MPIO
usbid=0x27351005
configure_modelname=mpiohd300
playerpic=mpiohd300
encoder=rbspeex

[gogearhdd1630]
name="Philips GoGear HDD16x0 & HDD18x0 Series"
buildserver_modelname=gogearhdd1630
bootloadermethod=mi4
bootloadername=/gogear/hdd1630/FWImage.ebn
bootloaderfile=/System/FWImage.ebn
manualname=
brand=Philips
usbid=0x0471014c
configure_modelname=gogearhdd1630
playerpic=gogearhdd1630
encoder=rbspeex

[gogearhdd6330]
name="Philips GoGear HDD63x0 Series"
buildserver_modelname=gogearhdd6330
bootloadermethod=mi4
booloadername=/gogear/hdd6330/FWImage.ebn
bootloaderfile=/System/FWImage.ebn
manualname=
brand=Philips
usbid=0x0471014b
configure_modelname=gogearhdd6330
playerpic=gogearhdd6330
encoder=rbspeex

[gogearsa9200]
name="Philips GoGear SA9200"
buildserver_modelname=gogearsa9200
bootloadermethod=none
bootloaderfile=/System/FWImage.ebn
manualname=
brand=Philips
usbid=0x0471014f
configure_modelname=gogearsa9200
playerpic=gogearsa9200
encoder=rbspeex
status=disabled

[creativezenxfi3]
name="Creative Zen X-Fi3"
buildserver_modelname=creativezenxfi3
bootloadermethod=imx
bootloadername=/creative/zenxfi3/bootloader-zenxfi3.creative
bootloaderfile=/firmware.sb
bootloaderfilter=*.sb *.exe
manualname=
brand=Creative
usbid=0x041e2020
usberror=
configure_modelname=creativezenxfi3
playerpic=creativezenxfi3
encoder=rbspeex

[xduoox3]
name="xDuoo X3"
buildserver_modelname=xduoox3
bootloadermethod=bspatch
bootloadername=/xduoo/X3-v11.bsdiff
bootloaderfile=/update.zip
bootloaderfilter=*.zip
manualname=
brand=xDuoo
usbid=0x0525a4a5
usberror=
configure_modelname=xduoox3
playerpic=xduoox3
encoder=rbspeex

[xduoox3ii]
name="xDuoo X3 II"
buildserver_modelname=xduoox3ii
bootloadermethod=bspatch
bootloadername=/xduoo/X3II-v13.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=
brand=xDuoo
usbid=0xc502003c ; shared with X20
usberror=
configure_modelname=xduoox3ii
playerpic=xduoox3ii
encoder=rbspeex

[xduoox20]
name="xDuoo X20"
buildserver_modelname=xduoox20
bootloadermethod=bspatch
bootloadername=/xduoo/X20-v18.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=
brand=xDuoo
usbid=0xc502003c ; shared with X3ii
usberror=
configure_modelname=xduoox20
playerpic=xduoox20
encoder=rbspeex

[agptekrocker]
name="AGPTek Rocker"
buildserver_modelname=agptekrocker
bootloadermethod=bspatch
bootloadername=/agptek/ROCKER-20171101.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=
brand=AGPTek
usbid=0xc5020029
usberror=
configure_modelname=agptekrocker
playerpic=agptekrocker
encoder=rbspeex

[aigoerosq]
name="AIGO Eros Q"
buildserver_modelname=aigoerosq
bootloadermethod=bspatch
bootloadername=/aigo/EROSQ-v18.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=
brand=AIGO/EROS
usbid=0xc5020023 ; shared across EROS Q/K series
usberror=
configure_modelname=aigoerosq
playerpic=aigoerosq
encoder=rbspeex

[aigoerosk]
name="AIGO Eros K"
buildserver_modelname=aigoerosq
bootloadermethod=bspatch
bootloadername=/aigo/EROSK-v13.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=
brand=AIGO/EROS
usbid=0xc5020023 ; shared across EROS Q/K series
usberror=
configure_modelname=aigoerosq
playerpic=aigoerosk
encoder=rbspeex

[agptekh3]
name="AGPTek H3"
buildserver_modelname=aigoerosq
bootloadermethod=bspatch
bootloadername=/agptek/H3-20180905.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=aigoerosk
brand=AGPTek
usbid=0xc5020023 ; shared across EROS Q / K series
usberror=
configure_modelname=aigoerosq
playerpic=aigoerosk
encoder=rbspeex

[surfansf20]
name="Surfans F20"
buildserver_modelname=aigoerosq
bootloadermethod=bspatch
bootloadername=/surfans/F20-v22.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=aigoerosq
brand=Surfans
usbid=0xc5020023 ; shared across EROS Q / K series
usberror=
configure_modelname=aigoerosq
playerpic=aigoerosk
encoder=rbspeex

[hifiwalkerh2]
name="HIFI WALKER H2"
buildserver_modelname=aigoerosq
bootloadermethod=bspatch
bootloadername=/hifiwalker/H2-v12.bsdiff
bootloaderfile=/update.upt
bootloaderfilter=*.upt *.zip
manualname=erosq
brand=HIFI WALKER
usbid=0xc5020023 ; shared across EROS Q / K series
usberror=
configure_modelname=aigoerosq
playerpic=aigoerosq
encoder=rbspeex

; incompatible devices sections
; each section uses a USB VID / PID string as section name.
; name: human readable string to show the user when this device is detected.
[05ac1240]
name="Apple Ipod Nano (Second Generation, DFU Mode)"

[05ac1262]
name="Apple Ipod Nano (Third Generation)"

[05ac1263]
name="Apple Ipod Nano (Fourth Generation)"

[05ac1255]
name="Apple Ipod Nano (Fourth Generation, DFU Mode)"

[05ac1265]
name="Apple Ipod Nano (Fifth Generation)"

[05ac1266]
name="Apple Ipod Nano (Sixth Generation)"

[05ac1267]
name="Apple Ipod Nano (Seventh Generation)"

[041e4133]
name="Creative Zen series (Removable Disk Mode)"

[041e4151]
name="Creative Zen Vision:M (MTP)"

[041e4150]
name="Creative Zen V (MTP)"

[041e4152]
name="Creative Zen V Plus (MTP)"

[066f3600]
name="Creative Zen V (HW recovery mode)"

[041e4157]
name="Creative ZEN (MTP)"

[041e4128]
name="Creative NOMAD Jukebox Zen Xtra (MTP)"

[041e4111]
name="Dell Digital Jukebox (First Generation, MTP)"

[041e412f]
name="Dell Digital Jukebox (Second Generation, MTP)"

[09300014]
name="Toshiba Gigabeat V Series, MTP"

[09300019]
name="Toshiba Gigabeat T Series, MTP (No UMS mode)"

[07817480]
name="Sansa Connect (Normal Connection)"

[07817481]
name="Sansa Connect (Recovery Mode)"

[07817400]
name="Sansa m200-tcc (UMS/MSC)"

[07817401]
name="Sansa m200-tcc (MTP)"

[078174b1]
name="Sansa View"

[066f3780]
name="Sansa Fuze+ (Recovery Mode)"

; languages to be shown for voicefile creation.
; The language string is sent to the server when retrieving the list of
; strings. Each entry name is the code for the language and used for storing in
; the configuration.
; Format:
; <language code>=<language string as sent to server>,<human readable string>
[languages]
af=afrikaans,Afrikaans
ar=arabic,Arabic
bg=bulgarian,Bulgarian
ca=catala,Catala
cs=czech,Czech
da=dansk,Dansk
de=deutsch,Deutsch
de_WAE=wallisertitsch,Wallisertitsch
el=greek,Greek
en=english,English (UK)
en_US=english-us,English (US)
eo=esperanto,Esperanto
es=espanol,Espanol
et=eesti,Eesti
eu=basque,Basque
fi=finnish,Finnish
fr=francais,Francais
gl=galego,Galego
he=hebrew,Hebrew
hi=hindi,Hindi
hu=magyar,Magyar
hr=hrvatski,Hrvatski
is=islenska,Islenska
it=italiano,Italiano
ja=japanese,Japanese
ko=korean,Korean
lt=lietuviu,Lietuviu
lv=latviesu,Latviesu
nb=norsk,Norsk
nl=nederlands,Netherlands
nl_NLD=vlaams,Vlaams
nn=norsk-nynorsk,Norsk (Nyorsk)
pl=polski,Polski
pt=portugues,Portugues
pt_BR=portugues-brasileiro,Portugues (Brasileiro)
ro=romaneste,Romaneste
ru=russian,Russian
sk=slovak,Slovakscina,Slovenscina
sr=srpski,Srpski
sv=svenska,Svenska
th=thai,Thai
tl=tagalog,Tagalog
tr=turkce,Turkce
uk=ukranian,Ukgranian
wa=walon,Wallon
zh_CN=chinese-simp,Chinese (simplified)
zh_TW=chinese-trad,Chinese (traditional)