Quote:
Originally Posted by kayospark
I know that. This is how exactly shows to me, but can't move installed games or apps from phone storage to external_sd (now usb storage) it says "SD card full" but it's half empty.
|
I faced the same issue, and therefore made some modifications to the vold file provided by PUDUP. (great work btw)

After several hit and trial attempts, I have my external SD swapped with the internal SD, without "SD card full" error on attempting to move apps to SD card. I have uploaded my modified vold for your reference. Hope this helps.
My tweak was simple - don't know why it worked though – on the Internal SDcard syntax, I enabled ASEC,as mentioned below:
## Vold 2.0 fstab for n1
## - San Mehat (san@android.com)
##
#######################
## Regular device mount
##
## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
## label - Label for the volume
## mount_point - Where the volume will be mounted
## part - Partition # (1 based), or 'auto' for first usable partition.
## <sysfs_path> - List of sysfs paths to source devices
######################
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = enable
discard = enable
format_option = -r 1980
}
dev_mount sdcard /mnt/sdcard/external_sd 4 /devices/platform/sdhci-tegra.3/mmc_host/mmc0/mmc0
# external sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount sdcard1 /mnt/sdcard auto /devices/platform/sdhci-tegra.2/mmc_host/mmc1/mmc1
# otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/tegra-ehci.0/usb
#end line ## keep this line
PS: A newbie to android, after using XDA to learn plenty of tips and tricks, I joined the forum to help others as it helped me!