H300 bootloader: don't turn on the HD too soon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8130 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9d918c94b5
commit
b68cb9b052
1 changed files with 4 additions and 1 deletions
|
@ -220,11 +220,14 @@ void main(void)
|
|||
#endif
|
||||
#endif
|
||||
|
||||
/* Power on the hard drive early, to speed up the loading */
|
||||
/* Power on the hard drive early, to speed up the loading.
|
||||
Some H300 don't like this, so we only do it for the H100 */
|
||||
#ifndef IRIVER_H300_SERIES
|
||||
if(!((on_button && button_hold()) ||
|
||||
(rc_on_button && remote_button_hold()))) {
|
||||
ide_power_enable(true);
|
||||
}
|
||||
#endif
|
||||
|
||||
system_init();
|
||||
kernel_init();
|
||||
|
|
Loading…
Reference in a new issue