diff options
| author | Szymon Dziok <b0hoon@o2.pl> | 2010-03-23 21:28:25 +0000 |
|---|---|---|
| committer | Szymon Dziok <b0hoon@o2.pl> | 2010-03-23 21:28:25 +0000 |
| commit | 492fafe8792bf21f034d34bbef0e3d38383fa989 (patch) | |
| tree | 70f59cc155b207bc3903ceedbb4ad4c0ce5f43d5 /bootloader/common.c | |
| parent | 564daa1a6855cd0194dad3d2ec0de3e443117fa9 (diff) | |
| download | rockbox-492fafe8792bf21f034d34bbef0e3d38383fa989.zip rockbox-492fafe8792bf21f034d34bbef0e3d38383fa989.tar.gz rockbox-492fafe8792bf21f034d34bbef0e3d38383fa989.tar.bz2 rockbox-492fafe8792bf21f034d34bbef0e3d38383fa989.tar.xz | |
Packard Bell Vibe 500: remove the old bootloader code (actually a lack of code) and make the main-pp.c acting like a true bootloader for the DAP. It's the first step to integrate the DAP with the RBUtil.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25311 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader/common.c')
| -rw-r--r-- | bootloader/common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bootloader/common.c b/bootloader/common.c index 18d7dd4..2a80f98 100644 --- a/bootloader/common.c +++ b/bootloader/common.c @@ -37,7 +37,7 @@ #include "file.h" /* TODO: Other bootloaders need to be adjusted to set this variable to true - on a button press - currently only the ipod, H10 and Sansa versions do. */ + on a button press - currently only the ipod, H10, Vibe 500 and Sansa versions do. */ #if defined(IPOD_ARCH) || defined(IRIVER_H10) || defined(IRIVER_H10_5GB) \ || defined(SANSA_E200) || defined(SANSA_C200) || defined(GIGABEAT_F) \ || (CONFIG_CPU == AS3525) || defined(COWON_D2) \ @@ -45,7 +45,8 @@ || defined(SAMSUNG_YH925) || defined(SAMSUNG_YH920) \ || defined(SAMSUNG_YH820) || defined(PHILIPS_SA9200) \ || defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330) \ - || defined(ONDA_VX747) || defined(SANSA_CLIPPLUS) + || defined(ONDA_VX747) || defined(SANSA_CLIPPLUS) \ + || defined(PBELL_VIBE500) bool verbose = false; #else bool verbose = true; |