1
0
Fork 0
forked from len0rd/rockbox

Allow LBA-less partitions

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1364 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-07-16 08:48:16 +00:00
parent d1de4f8d38
commit 761cd95f23
2 changed files with 4 additions and 2 deletions

View file

@ -126,7 +126,8 @@ void init(void)
panicf("disk: NULL");
for ( i=0; i<4; i++ ) {
if ( pinfo[i].type == PARTITION_TYPE_FAT32 ) {
if ( pinfo[i].type == PARTITION_TYPE_FAT32 ||
pinfo[i].type == PARTITION_TYPE_FAT32_LBA ) {
rc = fat_mount(pinfo[i].start);
if(rc)
panicf("mount: %d",rc);