mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
Allow FAT16 partitions (for c200)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14753 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
15cf32b517
commit
82e4af6c8e
1 changed files with 4 additions and 1 deletions
|
|
@ -335,7 +335,10 @@ int is_e200(struct sansa_t* sansa)
|
|||
|
||||
/* Check partition layout */
|
||||
|
||||
if (((sansa->pinfo[0].type != 0x0b) && (sansa->pinfo[0].type != 0x0c)) ||
|
||||
if (((sansa->pinfo[0].type != 0x06) &&
|
||||
(sansa->pinfo[0].type != 0x0b) &&
|
||||
(sansa->pinfo[0].type != 0x0c) &&
|
||||
(sansa->pinfo[0].type != 0x0e)) ||
|
||||
(sansa->pinfo[1].type != 0x84) ||
|
||||
(sansa->pinfo[2].type != 0x00) ||
|
||||
(sansa->pinfo[3].type != 0x00)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue