Changes between Initial Version and Version 1 of Ticket #199

Show
Ignore:
Timestamp:
07/23/11 21:19:56 (22 months ago)
Author:
divx118
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #199

    • Property summary changed from Mounting sd card fails in vold.fstab to Mounting sdcard fails in vold.fstab
  • Ticket #199 – description

    initial v1  
    1 Mounting the sdcard with vold.fstab fails, because the sysfs path changes according to the sdcard that is used. 
     1'''Mounting the sdcard with vold.fstab fails, because the sysfs path changes according to the sdcard that is used.''' 
    22 
    33The mounting line in vold.fstab should be as follows, but XXXX is the thing that changes when another card is used. 
     
    1010dev_mount_lun volume_sdcard /mnt/storage/sdcard auto /devices/platform/usb_mass_storage/lun1 /class/block/mmcblk2 
    1111 
     12'''We should also decide on where to mount the sdcard.'''[[BR]][[BR]] Normally the internal memory is the main sdcard for android. This is mounted at /mnt/storage.  
     13 
     14In the official firmware it is done like this: 
     15 
     16/mnt/storage is the internal memory 
     17 
     18/storage -> /mnt/storage  
     19 
     20/sdcard -> /mnt/storage  
     21 
     22/mnt/sdcard -> /mnt/storage  
     23 
     24/mnt/storage/sdcard is the removable sdcard 
     25 
     26vold.fstab mounting lines on the archos: 
    1227 
    1328 
     29{{{ 
     30dev_mount_lun volume_internal /mnt/storage auto /devices/platform/usb_mass_storage/lun0 /class/block/mmcblk1 
     31dev_mount_lun volume_sdcard /mnt/storage/sdcard auto /devices/platform/usb_mass_storage/lun1 /class/block/mmcblk2 
     32dev_mount volume_external /mnt/storage/usb_host auto /class/block/sda 
     33}}} 
     34 
     35 
     36