summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2020-11-28 20:28:51 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2020-12-03 22:25:12 +0100
commit78a01db47cac5fa67aeee6f1c5134f89c3e4944a (patch)
tree4e1ffe91ff017c42cba9a580521c7ad98628eaaa
parent10f05b3b27890a73d01ee6d0309876f2c2ef9b33 (diff)
downloadrockbox-78a01db47cac5fa67aeee6f1c5134f89c3e4944a.tar.gz
rockbox-78a01db47cac5fa67aeee6f1c5134f89c3e4944a.zip
rbutil: Get rid of configure_modelname in rbutil.ini.
The target selection string used for configure is the same as the internally used player string, minus the (optional) variant suffix. Don't duplicate things, simply strip the suffix. Change-Id: Ic34bd5f933fab0d837adce0d0ae9c403868d720d
-rw-r--r--rbutil/rbutilqt/base/systeminfo.cpp1
-rw-r--r--rbutil/rbutilqt/base/systeminfo.h1
-rw-r--r--rbutil/rbutilqt/base/utils.cpp2
-rw-r--r--rbutil/rbutilqt/rbutil.ini64
-rw-r--r--rbutil/rbutilqt/themesinstallwindow.cpp2
5 files changed, 2 insertions, 68 deletions
diff --git a/rbutil/rbutilqt/base/systeminfo.cpp b/rbutil/rbutilqt/base/systeminfo.cpp
index 959a073757..8868ba937b 100644
--- a/rbutil/rbutilqt/base/systeminfo.cpp
+++ b/rbutil/rbutilqt/base/systeminfo.cpp
@@ -59,7 +59,6 @@ const static struct {
59 { SystemInfo::Encoder, ":platform:/encoder", "" }, 59 { SystemInfo::Encoder, ":platform:/encoder", "" },
60 { SystemInfo::Brand, ":platform:/brand", "" }, 60 { SystemInfo::Brand, ":platform:/brand", "" },
61 { SystemInfo::Name, ":platform:/name", "" }, 61 { SystemInfo::Name, ":platform:/name", "" },
62 { SystemInfo::ConfigureModel, ":platform:/configure_modelname", "" },
63 { SystemInfo::PlayerPicture, ":platform:/playerpic", "" }, 62 { SystemInfo::PlayerPicture, ":platform:/playerpic", "" },
64}; 63};
65 64
diff --git a/rbutil/rbutilqt/base/systeminfo.h b/rbutil/rbutilqt/base/systeminfo.h
index 23288a1999..67863c2268 100644
--- a/rbutil/rbutilqt/base/systeminfo.h
+++ b/rbutil/rbutilqt/base/systeminfo.h
@@ -72,7 +72,6 @@ class SystemInfo : public QObject
72 Encoder, 72 Encoder,
73 Brand, 73 Brand,
74 Name, 74 Name,
75 ConfigureModel,
76 PlayerPicture, 75 PlayerPicture,
77 }; 76 };
78 77
diff --git a/rbutil/rbutilqt/base/utils.cpp b/rbutil/rbutilqt/base/utils.cpp
index 83c189b8a2..2f01f42e2c 100644
--- a/rbutil/rbutilqt/base/utils.cpp
+++ b/rbutil/rbutilqt/base/utils.cpp
@@ -381,7 +381,7 @@ QString Utils::checkEnvironment(bool permission)
381 RockboxInfo rbinfo(RbSettings::value(RbSettings::Mountpoint).toString()); 381 RockboxInfo rbinfo(RbSettings::value(RbSettings::Mountpoint).toString());
382 QString installed = rbinfo.target(); 382 QString installed = rbinfo.target();
383 if(!installed.isEmpty() && installed != 383 if(!installed.isEmpty() && installed !=
384 SystemInfo::platformValue(SystemInfo::ConfigureModel).toString()) 384 RbSettings::value(RbSettings::CurrentPlatform).toString().split(".").at(0))
385 { 385 {
386 text += tr("<li>Target mismatch detected.<br/>" 386 text += tr("<li>Target mismatch detected.<br/>"
387 "Installed target: %1<br/>Selected target: %2.</li>") 387 "Installed target: %1<br/>Selected target: %2.</li>")
diff --git a/rbutil/rbutilqt/rbutil.ini b/rbutil/rbutilqt/rbutil.ini
index 1c865cb233..321d4bd096 100644
--- a/rbutil/rbutilqt/rbutil.ini
+++ b/rbutil/rbutilqt/rbutil.ini
@@ -147,7 +147,6 @@ bootloadername=
147manualname= 147manualname=
148brand=Archos 148brand=Archos
149usbid=0x05ab0031 149usbid=0x05ab0031
150configure_modelname=archosplayer
151playerpic=archosplayer 150playerpic=archosplayer
152encoder=lame 151encoder=lame
153 152
@@ -158,7 +157,6 @@ bootloadername=
158manualname= 157manualname=
159brand=Archos 158brand=Archos
160usbid=0x05ab0031,0x05ab0060 159usbid=0x05ab0031,0x05ab0060
161configure_modelname=archosrecorder
162playerpic=archosrecorder 160playerpic=archosrecorder
163encoder=lame 161encoder=lame
164 162
@@ -169,7 +167,6 @@ bootloadername=
169manualname=archosfmrecorder 167manualname=archosfmrecorder
170brand=Archos 168brand=Archos
171usbid=0x05ab0060 169usbid=0x05ab0060
172configure_modelname=archosrecorderv2
173playerpic=archosrecorderv2 170playerpic=archosrecorderv2
174encoder=lame 171encoder=lame
175 172
@@ -180,7 +177,6 @@ bootloadername=
180manualname= 177manualname=
181brand=Archos 178brand=Archos
182usbid=0x05ab0060 179usbid=0x05ab0060
183configure_modelname=archosfmrecorder
184playerpic=archosfmrecorder 180playerpic=archosfmrecorder
185encoder=lame 181encoder=lame
186 182
@@ -191,7 +187,6 @@ bootloadername=
191manualname= 187manualname=
192brand=Archos 188brand=Archos
193usbid=0x058f9330 189usbid=0x058f9330
194configure_modelname=archosondiosp
195playerpic=archosondiosp 190playerpic=archosondiosp
196encoder=lame 191encoder=lame
197 192
@@ -202,7 +197,6 @@ bootloadername=
202manualname= 197manualname=
203brand=Archos 198brand=Archos
204usbid=0x058f9330 199usbid=0x058f9330
205configure_modelname=archosondiofm
206playerpic=archosondiofm 200playerpic=archosondiofm
207encoder=lame 201encoder=lame
208 202
@@ -215,7 +209,6 @@ bootloaderfilter=*.hex *.zip
215manualname=iriverh100 209manualname=iriverh100
216brand=Iriver 210brand=Iriver
217usbid=0x10063001 211usbid=0x10063001
218configure_modelname=iriverh100
219playerpic=iriverh100 212playerpic=iriverh100
220encoder=rbspeex 213encoder=rbspeex
221 214
@@ -228,7 +221,6 @@ bootloaderfilter=*.hex *.zip
228manualname=iriverh100 221manualname=iriverh100
229brand=Iriver 222brand=Iriver
230usbid=0x10063002 223usbid=0x10063002
231configure_modelname=iriverh120
232playerpic=iriverh100 224playerpic=iriverh100
233encoder=rbspeex 225encoder=rbspeex
234 226
@@ -241,7 +233,6 @@ bootloaderfilter=*.hex *.zip
241manualname=iriverh300 233manualname=iriverh300
242brand=Iriver 234brand=Iriver
243usbid=0x10063003 235usbid=0x10063003
244configure_modelname=iriverh300
245playerpic=iriverh300 236playerpic=iriverh300
246encoder=rbspeex 237encoder=rbspeex
247 238
@@ -253,7 +244,6 @@ bootloaderfile=/System/H10.mi4, /System/H10EMP.mi4
253manualname= 244manualname=
254brand=Iriver 245brand=Iriver
255usbid=0x41022002 246usbid=0x41022002
256configure_modelname=iriverh10_5gb
257playerpic=iriverh10_5gb 247playerpic=iriverh10_5gb
258encoder=rbspeex 248encoder=rbspeex
259 249
@@ -265,7 +255,6 @@ bootloaderfile=/System/H10.mi4, /System/H10EMP.mi4
265manualname= 255manualname=
266brand=Iriver 256brand=Iriver
267usbid=0x41022105, 0x41022102 257usbid=0x41022105, 0x41022102
268configure_modelname=iriverh10_5gb
269playerpic=iriverh10_5gb 258playerpic=iriverh10_5gb
270encoder=rbspeex 259encoder=rbspeex
271 260
@@ -278,7 +267,6 @@ manualname=
278brand=Iriver 267brand=Iriver
279usbid=0x0b7000ba 268usbid=0x0b7000ba
280usberror=0x41022101 269usberror=0x41022101
281configure_modelname=iriverh10
282playerpic=iriverh10 270playerpic=iriverh10
283encoder=rbspeex 271encoder=rbspeex
284 272
@@ -289,7 +277,6 @@ bootloadername=/ipod/bootloader-ipod1g2g.ipod
289manualname= 277manualname=
290brand=Apple 278brand=Apple
291; no usb 279; no usb
292configure_modelname=ipod1g2g
293playerpic=ipod1g2g 280playerpic=ipod1g2g
294encoder=rbspeex 281encoder=rbspeex
295 282
@@ -300,7 +287,6 @@ bootloadername=/ipod/bootloader-ipodcolor.ipod
300manualname= 287manualname=
301brand=Apple 288brand=Apple
302usbid=0x05ac1204 289usbid=0x05ac1204
303configure_modelname=ipodcolor
304playerpic=ipodcolor 290playerpic=ipodcolor
305encoder=rbspeex 291encoder=rbspeex
306 292
@@ -311,7 +297,6 @@ bootloadername=/ipod/bootloader-ipodnano1g.ipod
311manualname= 297manualname=
312brand=Apple 298brand=Apple
313usbid=0x05ac120a 299usbid=0x05ac120a
314configure_modelname=ipodnano1g
315playerpic=ipodnano1g 300playerpic=ipodnano1g
316encoder=rbspeex 301encoder=rbspeex
317 302
@@ -322,7 +307,6 @@ bootloadername=/ipod/bootloader-ipodnano2g.ipodx
322manualname= 307manualname=
323brand=Apple 308brand=Apple
324usbid=0x05ac1260 309usbid=0x05ac1260
325configure_modelname=ipodnano2g
326playerpic=ipodnano2g 310playerpic=ipodnano2g
327encoder=rbspeex 311encoder=rbspeex
328 312
@@ -333,7 +317,6 @@ bootloadername=/ipod/bootloader-ipod4g.ipod
333manualname= 317manualname=
334brand=Apple 318brand=Apple
335usbid=0x05ac1203 319usbid=0x05ac1203
336configure_modelname=ipod4g
337playerpic=ipod4g 320playerpic=ipod4g
338encoder=rbspeex 321encoder=rbspeex
339 322
@@ -344,7 +327,6 @@ bootloadername=/ipod/bootloader-ipodvideo.ipod
344manualname= 327manualname=
345brand=Apple 328brand=Apple
346usbid=0x05ac1209 329usbid=0x05ac1209
347configure_modelname=ipodvideo
348playerpic=ipodvideo 330playerpic=ipodvideo
349encoder=rbspeex 331encoder=rbspeex
350 332
@@ -355,7 +337,6 @@ bootloadername=/ipod/bootloader-ipod6g.ipod
355manualname= 337manualname=
356brand=Apple 338brand=Apple
357usbid=0x05ac1261 339usbid=0x05ac1261
358configure_modelname=ipod6g
359playerpic=ipod6g 340playerpic=ipod6g
360encoder=rbspeex 341encoder=rbspeex
361 342
@@ -366,7 +347,6 @@ bootloadername=/ipod/bootloader-ipod3g.ipod
366manualname= 347manualname=
367brand=Apple 348brand=Apple
368usbid=0x05ac1201 349usbid=0x05ac1201
369configure_modelname=ipod3g
370playerpic=ipod3g 350playerpic=ipod3g
371encoder=rbspeex 351encoder=rbspeex
372 352
@@ -376,7 +356,6 @@ bootloadermethod=ipod
376bootloadername=/ipod/bootloader-ipodmini1g.ipod 356bootloadername=/ipod/bootloader-ipodmini1g.ipod
377brand=Apple 357brand=Apple
378usbid=0x05ac1205 358usbid=0x05ac1205
379configure_modelname=ipodmini1g
380playerpic=ipodmini1g 359playerpic=ipodmini1g
381encoder=rbspeex 360encoder=rbspeex
382 361
@@ -387,7 +366,6 @@ bootloadername=/ipod/bootloader-ipodmini2g.ipod
387manualname=ipodmini1g 366manualname=ipodmini1g
388brand=Apple 367brand=Apple
389usbid=0x05ac1205 368usbid=0x05ac1205
390configure_modelname=ipodmini2g
391playerpic=ipodmini1g 369playerpic=ipodmini1g
392encoder=rbspeex 370encoder=rbspeex
393 371
@@ -399,7 +377,6 @@ bootloaderfile=/FIRMWARE/x5_fw.bin
399manualname= 377manualname=
400brand=Cowon 378brand=Cowon
401usbid=0x0e210510, 0x0e210513 379usbid=0x0e210510, 0x0e210513
402configure_modelname=iaudiox5
403playerpic=iaudiox5 380playerpic=iaudiox5
404encoder=rbspeex 381encoder=rbspeex
405 382
@@ -411,7 +388,6 @@ bootloaderfile=/FIRMWARE/x5v_fw.bin
411manualname= 388manualname=
412brand=Cowon 389brand=Cowon
413usbid=0x0e210510, 0x0e210513 390usbid=0x0e210510, 0x0e210513
414configure_modelname=iaudiox5
415playerpic=iaudiox5 391playerpic=iaudiox5
416encoder=rbspeex 392encoder=rbspeex
417 393
@@ -423,7 +399,6 @@ bootloaderfile=/FIRMWARE/m5_fw.bin
423manualname= 399manualname=
424brand=Cowon 400brand=Cowon
425usbid=0x0e210520 401usbid=0x0e210520
426configure_modelname=iaudiom5
427playerpic=iaudiom5 402playerpic=iaudiom5
428encoder=rbspeex 403encoder=rbspeex
429 404
@@ -435,7 +410,6 @@ bootloaderfile=/FIRMWARE/cowon_m3.bin
435manualname= 410manualname=
436brand=Cowon 411brand=Cowon
437usbid=0x0e210500 412usbid=0x0e210500
438configure_modelname=iaudiom3
439playerpic=iaudiom3 413playerpic=iaudiom3
440encoder=rbspeex 414encoder=rbspeex
441 415
@@ -447,7 +421,6 @@ bootloaderfile=/GBSYSTEM/FWIMG/FWIMG01.DAT
447manualname= 421manualname=
448brand=Toshiba 422brand=Toshiba
449usbid=0x09300009 423usbid=0x09300009
450configure_modelname=gigabeatfx
451playerpic=gigabeatfx 424playerpic=gigabeatfx
452encoder=rbspeex 425encoder=rbspeex
453 426
@@ -457,7 +430,6 @@ bootloadermethod=none
457manualname= 430manualname=
458brand=Toshiba 431brand=Toshiba
459usbid=0x09300010 432usbid=0x09300010
460configure_modelname=gigabeats
461playerpic=gigabeats 433playerpic=gigabeats
462encoder=rbspeex 434encoder=rbspeex
463status=disabled 435status=disabled
@@ -470,7 +442,6 @@ manualname=
470brand=Sandisk 442brand=Sandisk
471usbid=0x07817421 443usbid=0x07817421
472usberror=0x07817420 444usberror=0x07817420
473configure_modelname=sansae200
474playerpic=sansae200 445playerpic=sansae200
475encoder=rbspeex 446encoder=rbspeex
476 447
@@ -481,7 +452,6 @@ bootloadername=/sandisk-sansa/c200/firmware.mi4
481manualname= 452manualname=
482brand=Sandisk 453brand=Sandisk
483usbid=0x07817450, 0x07817451 454usbid=0x07817450, 0x07817451
484configure_modelname=sansac200
485playerpic=sansac200 455playerpic=sansac200
486encoder=rbspeex 456encoder=rbspeex
487 457
@@ -495,7 +465,6 @@ manualname=
495brand=Sandisk 465brand=Sandisk
496usbid=0x07817423 466usbid=0x07817423
497usberror=0x07817422 467usberror=0x07817422
498configure_modelname=sansae200v2
499playerpic=sansae200 468playerpic=sansae200
500encoder=rbspeex 469encoder=rbspeex
501 470
@@ -509,7 +478,6 @@ manualname=
509brand=Sandisk 478brand=Sandisk
510usbid=0x07817453 479usbid=0x07817453
511usberror=0x07817452 480usberror=0x07817452
512configure_modelname=sansac200v2
513playerpic=sansac200 481playerpic=sansac200
514encoder=rbspeex 482encoder=rbspeex
515 483
@@ -523,7 +491,6 @@ manualname=
523brand=Sandisk 491brand=Sandisk
524usbid=0x078174c1 492usbid=0x078174c1
525usberror=0x078174c0 493usberror=0x078174c0
526configure_modelname=sansafuze
527playerpic=sansafuze 494playerpic=sansafuze
528encoder=rbspeex 495encoder=rbspeex
529 496
@@ -537,7 +504,6 @@ manualname=
537brand=Sandisk 504brand=Sandisk
538usbid=0x078174c3 505usbid=0x078174c3
539usberror=0x078174c2 506usberror=0x078174c2
540configure_modelname=sansafuzev2
541playerpic=sansafuze 507playerpic=sansafuze
542encoder=rbspeex 508encoder=rbspeex
543 509
@@ -551,7 +517,6 @@ manualname=
551brand=Sandisk 517brand=Sandisk
552usbid=0x078174e1 518usbid=0x078174e1
553usberror= 519usberror=
554configure_modelname=sansafuzeplus
555playerpic=sansafuzeplus 520playerpic=sansafuzeplus
556encoder=rbspeex 521encoder=rbspeex
557 522
@@ -565,7 +530,6 @@ manualname=
565brand=Sandisk 530brand=Sandisk
566usbid= 531usbid=
567usberror= 532usberror=
568configure_modelname=sansam200v4
569playerpic=sansam200v4 533playerpic=sansam200v4
570encoder=rbspeex 534encoder=rbspeex
571status=disabled 535status=disabled
@@ -580,7 +544,6 @@ manualname=
580brand=Sandisk 544brand=Sandisk
581usbid=0x07817433 545usbid=0x07817433
582usberror=0x07817432 546usberror=0x07817432
583configure_modelname=sansaclip
584playerpic=sansaclip 547playerpic=sansaclip
585encoder=rbspeex 548encoder=rbspeex
586 549
@@ -594,7 +557,6 @@ manualname=
594brand=Sandisk 557brand=Sandisk
595usbid=0x07817435 558usbid=0x07817435
596usberror=0x07817434 559usberror=0x07817434
597configure_modelname=sansaclipv2
598playerpic=sansaclip 560playerpic=sansaclip
599encoder=rbspeex 561encoder=rbspeex
600 562
@@ -608,7 +570,6 @@ manualname=
608brand=Sandisk 570brand=Sandisk
609usbid=0x078174d1 571usbid=0x078174d1
610usberror=0x078174d0 572usberror=0x078174d0
611configure_modelname=sansaclipplus
612playerpic=sansaclipplus 573playerpic=sansaclipplus
613encoder=rbspeex 574encoder=rbspeex
614 575
@@ -622,7 +583,6 @@ manualname=
622brand=Sandisk 583brand=Sandisk
623usbid=0x078174e5 584usbid=0x078174e5
624usberror=0x078174e4 585usberror=0x078174e4
625configure_modelname=sansaclipzip
626playerpic=sansaclipzip 586playerpic=sansaclipzip
627encoder=rbspeex 587encoder=rbspeex
628 588
@@ -634,7 +594,6 @@ bootloaderfile=/System/pp5020.mi4
634manualname= 594manualname=
635brand=Olympus 595brand=Olympus
636usbid=0x07b40280 596usbid=0x07b40280
637configure_modelname=mrobe100
638playerpic=mrobe100 597playerpic=mrobe100
639encoder=rbspeex 598encoder=rbspeex
640 599
@@ -647,7 +606,6 @@ bootloaderfilter=*.hxf *.zip
647manualname= 606manualname=
648brand=Onda 607brand=Onda
649usbid=0x07c4a4a5 608usbid=0x07c4a4a5
650configure_modelname=ondavx747
651playerpic=vx747 609playerpic=vx747
652encoder=rbspeex 610encoder=rbspeex
653status=disabled 611status=disabled
@@ -661,7 +619,6 @@ bootloaderfilter=*.hxf *.zip
661manualname= 619manualname=
662brand=Onda 620brand=Onda
663usbid=0x07c4a4a5 621usbid=0x07c4a4a5
664configure_modelname=ondavx747p
665playerpic=vx747 622playerpic=vx747
666encoder=rbspeex 623encoder=rbspeex
667status=disabled 624status=disabled
@@ -675,7 +632,6 @@ bootloaderfilter=*.hxf *.zip
675manualname= 632manualname=
676brand=Onda 633brand=Onda
677usbid=0x07c4a4a5 634usbid=0x07c4a4a5
678configure_modelname=ondavx777
679playerpic=vx777 635playerpic=vx777
680encoder=rbspeex 636encoder=rbspeex
681status=disabled 637status=disabled
@@ -688,7 +644,6 @@ bootloaderfile=/SYSTEM/FW_YH820.mi4
688manualname= 644manualname=
689brand=Samsung 645brand=Samsung
690usbid=0x04e85023 646usbid=0x04e85023
691configure_modelname=samsungyh820
692playerpic=samsungyh820 647playerpic=samsungyh820
693encoder=rbspeex 648encoder=rbspeex
694 649
@@ -700,7 +655,6 @@ bootloaderfile=/SYSTEM/FW_YH920.mi4, /SYSTEM/PP5020.mi4
700manualname= 655manualname=
701brand=Samsung 656brand=Samsung
702usbid=0x04e85022, 0x04e8501d 657usbid=0x04e85022, 0x04e8501d
703configure_modelname=samsungyh920
704playerpic=samsungyh920 658playerpic=samsungyh920
705encoder=rbspeex 659encoder=rbspeex
706 660
@@ -712,7 +666,6 @@ bootloaderfile=/SYSTEM/FW_YH925.mi4
712manualname= 666manualname=
713brand=Samsung 667brand=Samsung
714usbid=0x04e85024 668usbid=0x04e85024
715configure_modelname=samsungyh925
716playerpic=samsungyh925 669playerpic=samsungyh925
717encoder=rbspeex 670encoder=rbspeex
718 671
@@ -726,7 +679,6 @@ manualname=
726brand=Cowon 679brand=Cowon
727usbid=0x0e210800, 0x0e210860, 0x0e210870, 0x0e210880, 0x0e210890 680usbid=0x0e210800, 0x0e210860, 0x0e210870, 0x0e210880, 0x0e210890
728usberror=0x0e210801, 0x0e210861, 0x0e210871, 0x0e210881, 0x0e210891 681usberror=0x0e210801, 0x0e210861, 0x0e210871, 0x0e210881, 0x0e210891
729configure_modelname=cowond2
730playerpic=cowond2 682playerpic=cowond2
731encoder=rbspeex 683encoder=rbspeex
732status=disabled 684status=disabled
@@ -740,7 +692,6 @@ manualname=
740brand=Packard Bell 692brand=Packard Bell
741usbid=0x04098038 693usbid=0x04098038
742usberror=0x04098039 694usberror=0x04098039
743configure_modelname=vibe500
744playerpic=vibe500 695playerpic=vibe500
745encoder=rbspeex 696encoder=rbspeex
746 697
@@ -753,7 +704,6 @@ bootloaderfilter=*.bin *.zip
753manualname= 704manualname=
754brand=MPIO 705brand=MPIO
755usbid=0x27351004 706usbid=0x27351004
756configure_modelname=mpiohd200
757playerpic=mpiohd200 707playerpic=mpiohd200
758encoder=rbspeex 708encoder=rbspeex
759 709
@@ -766,7 +716,6 @@ bootloaderfilter=*.bin *.zip
766manualname= 716manualname=
767brand=MPIO 717brand=MPIO
768usbid=0x27351005 718usbid=0x27351005
769configure_modelname=mpiohd300
770playerpic=mpiohd300 719playerpic=mpiohd300
771encoder=rbspeex 720encoder=rbspeex
772 721
@@ -778,7 +727,6 @@ bootloaderfile=/System/FWImage.ebn
778manualname= 727manualname=
779brand=Philips 728brand=Philips
780usbid=0x0471014c 729usbid=0x0471014c
781configure_modelname=gogearhdd1630
782playerpic=gogearhdd1630 730playerpic=gogearhdd1630
783encoder=rbspeex 731encoder=rbspeex
784 732
@@ -790,7 +738,6 @@ bootloaderfile=/System/FWImage.ebn
790manualname= 738manualname=
791brand=Philips 739brand=Philips
792usbid=0x0471014b 740usbid=0x0471014b
793configure_modelname=gogearhdd6330
794playerpic=gogearhdd6330 741playerpic=gogearhdd6330
795encoder=rbspeex 742encoder=rbspeex
796 743
@@ -801,7 +748,6 @@ bootloaderfile=/System/FWImage.ebn
801manualname= 748manualname=
802brand=Philips 749brand=Philips
803usbid=0x0471014f 750usbid=0x0471014f
804configure_modelname=gogearsa9200
805playerpic=gogearsa9200 751playerpic=gogearsa9200
806encoder=rbspeex 752encoder=rbspeex
807status=disabled 753status=disabled
@@ -816,7 +762,6 @@ manualname=
816brand=Creative 762brand=Creative
817usbid=0x041e2020 763usbid=0x041e2020
818usberror= 764usberror=
819configure_modelname=creativezenxfi3
820playerpic=creativezenxfi3 765playerpic=creativezenxfi3
821encoder=rbspeex 766encoder=rbspeex
822 767
@@ -830,7 +775,6 @@ manualname=
830brand=xDuoo 775brand=xDuoo
831usbid=0x0525a4a5 776usbid=0x0525a4a5
832usberror= 777usberror=
833configure_modelname=xduoox3
834playerpic=xduoox3 778playerpic=xduoox3
835encoder=rbspeex 779encoder=rbspeex
836 780
@@ -844,7 +788,6 @@ manualname=
844brand=xDuoo 788brand=xDuoo
845usbid=0xc502003c ; shared with X20 789usbid=0xc502003c ; shared with X20
846usberror= 790usberror=
847configure_modelname=xduoox3ii
848playerpic=xduoox3ii 791playerpic=xduoox3ii
849encoder=rbspeex 792encoder=rbspeex
850 793
@@ -858,7 +801,6 @@ manualname=
858brand=xDuoo 801brand=xDuoo
859usbid=0xc502003c ; shared with X3ii 802usbid=0xc502003c ; shared with X3ii
860usberror= 803usberror=
861configure_modelname=xduoox20
862playerpic=xduoox20 804playerpic=xduoox20
863encoder=rbspeex 805encoder=rbspeex
864 806
@@ -872,7 +814,6 @@ manualname=
872brand=AGPTek 814brand=AGPTek
873usbid=0xc5020029 815usbid=0xc5020029
874usberror= 816usberror=
875configure_modelname=agptekrocker
876playerpic=agptekrocker 817playerpic=agptekrocker
877encoder=rbspeex 818encoder=rbspeex
878 819
@@ -886,7 +827,6 @@ manualname=
886brand=AIGO/EROS 827brand=AIGO/EROS
887usbid=0xc5020023 ; shared across EROS Q/K series 828usbid=0xc5020023 ; shared across EROS Q/K series
888usberror= 829usberror=
889configure_modelname=aigoerosq
890playerpic=aigoerosq 830playerpic=aigoerosq
891encoder=rbspeex 831encoder=rbspeex
892 832
@@ -900,7 +840,6 @@ manualname=
900brand=AIGO/EROS 840brand=AIGO/EROS
901usbid=0xc5020023 ; shared across EROS Q/K series 841usbid=0xc5020023 ; shared across EROS Q/K series
902usberror= 842usberror=
903configure_modelname=aigoerosq
904playerpic=aigoerosk 843playerpic=aigoerosk
905encoder=rbspeex 844encoder=rbspeex
906 845
@@ -914,7 +853,6 @@ manualname=aigoerosk
914brand=AGPTek 853brand=AGPTek
915usbid=0xc5020023 ; shared across EROS Q / K series 854usbid=0xc5020023 ; shared across EROS Q / K series
916usberror= 855usberror=
917configure_modelname=aigoerosq
918playerpic=aigoerosk 856playerpic=aigoerosk
919encoder=rbspeex 857encoder=rbspeex
920 858
@@ -928,7 +866,6 @@ manualname=aigoerosq
928brand=Surfans 866brand=Surfans
929usbid=0xc5020023 ; shared across EROS Q / K series 867usbid=0xc5020023 ; shared across EROS Q / K series
930usberror= 868usberror=
931configure_modelname=aigoerosq
932playerpic=aigoerosk 869playerpic=aigoerosk
933encoder=rbspeex 870encoder=rbspeex
934 871
@@ -942,7 +879,6 @@ manualname=erosq
942brand=HIFI WALKER 879brand=HIFI WALKER
943usbid=0xc5020023 ; shared across EROS Q / K series 880usbid=0xc5020023 ; shared across EROS Q / K series
944usberror= 881usberror=
945configure_modelname=aigoerosq
946playerpic=aigoerosq 882playerpic=aigoerosq
947encoder=rbspeex 883encoder=rbspeex
948 884
diff --git a/rbutil/rbutilqt/themesinstallwindow.cpp b/rbutil/rbutilqt/themesinstallwindow.cpp
index 71e90cb7c8..e87d530c8c 100644
--- a/rbutil/rbutilqt/themesinstallwindow.cpp
+++ b/rbutil/rbutilqt/themesinstallwindow.cpp
@@ -86,7 +86,7 @@ void ThemesInstallWindow::downloadInfo()
86 86
87 QString infoUrl = SystemInfo::value(SystemInfo::ThemesInfoUrl).toString(); 87 QString infoUrl = SystemInfo::value(SystemInfo::ThemesInfoUrl).toString();
88 infoUrl.replace("%TARGET%", 88 infoUrl.replace("%TARGET%",
89 SystemInfo::platformValue(SystemInfo::ConfigureModel).toString()); 89 RbSettings::value(RbSettings::CurrentPlatform).toString().split(".").at(0));
90 infoUrl.replace("%REVISION%", installInfo.revision()); 90 infoUrl.replace("%REVISION%", installInfo.revision());
91 infoUrl.replace("%RELEASE%", installInfo.release()); 91 infoUrl.replace("%RELEASE%", installInfo.release());
92 infoUrl.replace("%RBUTILVER%", VERSION); 92 infoUrl.replace("%RBUTILVER%", VERSION);