diff options
| author | Dave Chapman <dave@dchapman.com> | 2009-10-02 16:41:55 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2009-10-02 16:41:55 +0000 |
| commit | 14eb02d347210b875b49ec4fdf2580a8ee8efc93 (patch) | |
| tree | 65cfad50acff0032850b93662a77370663393772 | |
| parent | 244359775b7918765e82b614114a9d832f6f012c (diff) | |
| download | rockbox-14eb02d347210b875b49ec4fdf2580a8ee8efc93.zip rockbox-14eb02d347210b875b49ec4fdf2580a8ee8efc93.tar.gz rockbox-14eb02d347210b875b49ec4fdf2580a8ee8efc93.tar.bz2 rockbox-14eb02d347210b875b49ec4fdf2580a8ee8efc93.tar.xz | |
Patch #1 from FS#10633 (Nano 2G developments) by Michael Sparmann - Allows targets to set a different sector size than 512 for the storage system. Should not affect any other target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22874 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | docs/CREDITS | 1 | ||||
| -rw-r--r-- | firmware/common/disk.c | 2 | ||||
| -rw-r--r-- | firmware/export/fat.h | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/docs/CREDITS b/docs/CREDITS index 0ef1ce4..beaccaa 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -495,6 +495,7 @@ Peter Schlenker Dan Davison David Kauffmann Carsten Schreiter +Michael Sparmann The libmad team The wavpack team diff --git a/firmware/common/disk.c b/firmware/common/disk.c index abeadb5..c455309 100644 --- a/firmware/common/disk.c +++ b/firmware/common/disk.c @@ -68,7 +68,7 @@ int disk_sector_multiplier = 1; struct partinfo* disk_init(IF_MD_NONVOID(int drive)) { int i; - unsigned char sector[512]; + unsigned char sector[SECTOR_SIZE]; #ifdef HAVE_MULTIDRIVE /* For each drive, start at a different position, in order not to destroy the first entry of drive 0. diff --git a/firmware/export/fat.h b/firmware/export/fat.h index d6e753f..9a6bcfa 100644 --- a/firmware/export/fat.h +++ b/firmware/export/fat.h @@ -26,7 +26,11 @@ #include "mv.h" /* for volume definitions */ #include "config.h" +/* This value can be overwritten by a target in config-[target].h, but + that behaviour is still experimental */ +#ifndef SECTOR_SIZE #define SECTOR_SIZE 512 +#endif /* Number of bytes reserved for a file name (including the trailing \0). Since names are stored in the entry as UTF-8, we won't be able to |