diff options
| author | Robert Kukla <roolku@rockbox.org> | 2008-03-09 01:56:38 +0000 |
|---|---|---|
| committer | Robert Kukla <roolku@rockbox.org> | 2008-03-09 01:56:38 +0000 |
| commit | e96f19c690947dafeabcd568b0e562e7dc200809 (patch) | |
| tree | fcdc925178ea6049e6fca1d2ba0dcf79e592ecdc | |
| parent | 88e2053538fecff7239abdfaf944c90351940652 (diff) | |
| download | rockbox-e96f19c690947dafeabcd568b0e562e7dc200809.zip rockbox-e96f19c690947dafeabcd568b0e562e7dc200809.tar.gz rockbox-e96f19c690947dafeabcd568b0e562e7dc200809.tar.bz2 rockbox-e96f19c690947dafeabcd568b0e562e7dc200809.tar.xz | |
enable partition probing for superfloppy targets; hanging was caused by out-of-bounds sector access
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16583 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/common/disk.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/firmware/common/disk.c b/firmware/common/disk.c index c26fdb3..3d4dd3d 100644 --- a/firmware/common/disk.c +++ b/firmware/common/disk.c @@ -148,10 +148,6 @@ int disk_mount(int drive) { return 0; } -#if !defined(ELIO_TPJ1022) && !defined(MROBE_100) - /* The Elio's hard drive has no partition table and probing for partitions causes - Rockbox to crash - so we temporarily disable the probing until we fix the - real problem. */ #ifdef TOSHIBA_GIGABEAT_S int i = 1; /* For the Gigabeat S, we mount the second partition */ #else @@ -185,7 +181,6 @@ int disk_mount(int drive) } #endif } -#endif if (mounted == 0 && volume != -1) /* none of the 4 entries worked? */ { /* try "superfloppy" mode */ |