View Single Post
Posts: 2,802 | Thanked: 4,491 times | Joined on Nov 2007
#3
N810:

Code:
major minor  #blocks  name

  31     0        128 mtdblock0
  31     1        384 mtdblock1
  31     2       2048 mtdblock2
  31     3       2048 mtdblock3
  31     4     257536 mtdblock4
 254     0    1966080 mmcblk0
 254     1    1966072 mmcblk0p1
 254     8    7977472 mmcblk1
 254     9    7973376 mmcblk1p1
The internal memory "card" is mmcblk0 and contains only one partition (mmcblk0p1) which is slightly smaller than the whole device here. In more detail:
Code:
Nokia-N810-50-2:~# sfdisk -l /dev/mmcblk0

Disk /dev/mmcblk0: 61440 cylinders, 4 heads, 16 sectors/track
Units = cylinders of 32768 bytes, blocks of 1024 bytes, counting from 0

   Device Boot Start     End   #cyls    #blocks   Id  System
/dev/mmcblk0p1          0+  61439   61440-   1966072    b  W95 FAT32
/dev/mmcblk0p2          0       -       0          0    0  Empty
/dev/mmcblk0p3          0       -       0          0    0  Empty
/dev/mmcblk0p4          0       -       0          0    0  Empty
You should be able to fix it by unmounting it, running sfdisk on it to delete and recreate the first partition and finally using mkfs.vfat -F 32 to "format" the partition as FAT32.