summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorTony Månsson <tony.mansson@linaro.org>2011-05-19 13:11:49 +0200
committerTony Månsson <tony.mansson@linaro.org>2011-05-19 13:11:49 +0200
commit602e32bd3b63fa7978ae4f33dc428cf1e71a952b (patch)
tree4190b89b2f537f907283d4b837a9f63a8d297f0d /fs
parente96b2e8163c6693ffc46ddbd222e3b169ff835d4 (diff)
Fix for Snowball
Diffstat (limited to 'fs')
-rw-r--r--fs/fat/fat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/fat/fat.c b/fs/fat/fat.c
index 086f3a6a5..91d554384 100644
--- a/fs/fat/fat.c
+++ b/fs/fat/fat.c
@@ -170,6 +170,7 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
#if defined(CONFIG_ROCKBOX_FAT)
cur_block_dev.cur_part = part_no;
cur_block_dev.part_offset=info.start;
+ printf("Partition info retrieved\n");
#else
part_offset = info.start;
cur_part = part_no;
@@ -211,8 +212,10 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
* purpose the libpart must be included.
*/
#if defined(CONFIG_ROCKBOX_FAT)
- cur_block_dev.cur_part = 1;
+ cur_block_dev.cur_part = 1;
cur_block_dev.part_offset = 32;
+ cur_block_dev.part_offset=info.start;
+ }
#else
part_offset = 32;
cur_part = 1;