diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2011-01-21 07:05:51 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2011-01-21 07:05:51 +0000 |
| commit | 863c03f2ae08e8fa431f3d40a167605fae726a15 (patch) | |
| tree | 830881f5ed41b98ee4cdf502b32264ad89a40206 /bootloader/common.c | |
| parent | 523036251550b69ed3f204b1e1f21478cfc48174 (diff) | |
| download | rockbox-863c03f2ae08e8fa431f3d40a167605fae726a15.zip rockbox-863c03f2ae08e8fa431f3d40a167605fae726a15.tar.gz rockbox-863c03f2ae08e8fa431f3d40a167605fae726a15.tar.bz2 rockbox-863c03f2ae08e8fa431f3d40a167605fae726a15.tar.xz | |
Gigabeat S: Renovate bootloader a bit to show splash, implement verbose, shutdown on low battery, handle hold-switch-on and wait only so long for USB if a USB charger is inserted at boot instead of being connected to a host. 'Bootloader USB mode' display is just part of normal printf stream now. Move interrupt stacks into .bss area so they aren't loaded (for firmware too).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29099 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader/common.c')
| -rw-r--r-- | bootloader/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/common.c b/bootloader/common.c index 8c587ed..8fb7cde 100644 --- a/bootloader/common.c +++ b/bootloader/common.c @@ -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(PBELL_VIBE500) + || defined(ONDA_VX747) || defined(PBELL_VIBE500) \ + || defined(TOSHIBA_GIGABEAT_S) bool verbose = false; #else bool verbose = true; |