Try to mount vol->device2 partition to UMS.

Stock sd-card that ships with LG-P500 formatted with no partitions.
This issue can be handled with device2 in recovery.fstab.
But UMS didn't.
We will try to mount second device (if it was defined) if first failed.

Change-Id: Ia8b58b9fdfa3e63f703a1dd5870cb76936cec88e
This commit is contained in:
mik_os 2011-04-26 19:15:22 +03:00
parent 6a97396572
commit df3004bd16

View File

@ -353,7 +353,8 @@ void show_mount_usb_storage_menu()
return -1;
}
if (write(fd, vol->device, strlen(vol->device)) < 0) {
if ((write(fd, vol->device, strlen(vol->device)) < 0) &&
(!vol->device2 || (write(fd, vol->device, strlen(vol->device2)) < 0))) {
LOGE("Unable to write to ums lunfile (%s)", strerror(errno));
close(fd);
return -1;