Hello,
few weeks ago I've installed some v30a ROM, now I have problems with mounting internal and external sdcard. System won't mount it by himself.
Using the DiskInfo I've found all disk partitions in the phone. Internal sdcard is /dev/block/mmcblk0p16 and external sdcard is /dev/block/mmclbk1p1.
Manual mount (mount -t vfat /dev/block/mmcblk0p16 /mnt/sdcard) over terminal emulator, or adb shell works, but applications don't recognize changes, and they're still requesting for connect a storage device.
I've already tried to modify /etc/vold.fstab - original vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/omap/omap_hsmmc.0/mmc_host
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
my modified vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 16 /sys/devices/platform/omap/omap_hsmmc.1/mmc_host/mmc0
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /sys/devices/platform/omap/omap_hsmmc.0/mmc_host/mmc1
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
#### Testing manual mount ####
#/dev/block/mmcblk0p16 /mnt/sdcard vfat defaults,noatime 0 0
#/dev/block/mmcblk1p1 /mnt/sdcard/_ExternalSD vfat defaults,noatime 1 1
As you can see, I've modified paths from /devices/ to /sys/devices/, 'cause I can't find that path in terminal.
I also tried to put there classic linux-like mountpoints, but after reboot, all applications working with storage (camera, gallery) were crashing.
Next try was to modify init.cosmo.rc, and force mountpoints, but there was same problem with applications, they were crashing.
Actual ROM: http://forum.xda-developers.com/showthread.php?t=2407418 - flashed today using CWM.
Yesterday I was using - cm-10-20130707-NIGHTLY-p920 - same problem.
Thanks for every response (and sorry for my english).
bossqone said:
Hello,
few weeks ago I've installed some v30a ROM, now I have problems with mounting internal and external sdcard. System won't mount it by himself.
Using the DiskInfo I've found all disk partitions in the phone. Internal sdcard is /dev/block/mmcblk0p16 and external sdcard is /dev/block/mmclbk1p1.
Manual mount (mount -t vfat /dev/block/mmcblk0p16 /mnt/sdcard) over terminal emulator, or adb shell works, but applications don't recognize changes, and they're still requesting for connect a storage device.
I've already tried to modify /etc/vold.fstab - original vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/omap/omap_hsmmc.0/mmc_host
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
my modified vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 16 /sys/devices/platform/omap/omap_hsmmc.1/mmc_host/mmc0
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /sys/devices/platform/omap/omap_hsmmc.0/mmc_host/mmc1
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
#### Testing manual mount ####
#/dev/block/mmcblk0p16 /mnt/sdcard vfat defaults,noatime 0 0
#/dev/block/mmcblk1p1 /mnt/sdcard/_ExternalSD vfat defaults,noatime 1 1
As you can see, I've modified paths from /devices/ to /sys/devices/, 'cause I can't find that path in terminal.
I also tried to put there classic linux-like mountpoints, but after reboot, all applications working with storage (camera, gallery) were crashing.
Next try was to modify init.cosmo.rc, and force mountpoints, but there was same problem with applications, they were crashing.
Actual ROM: http://forum.xda-developers.com/showthread.php?t=2407418 - flashed today using CWM.
Yesterday I was using - cm-10-20130707-NIGHTLY-p920 - same problem.
Thanks for every response (and sorry for my english).
Click to expand...
Click to collapse
hm strange but maybe bring your phone back to stock with lg flash tool, then try it again.
MasterTobi said:
hm strange but maybe bring your phone back to stock with lg flash tool, then try it again.
Click to expand...
Click to collapse
same result with stock ROM (.kdz)
bossqone said:
same result with stock ROM (.kdz)
Click to expand...
Click to collapse
can you make a screenshoot from your status also there where is written your internal space and external space
bossqone said:
Hello,
few weeks ago I've installed some v30a ROM, now I have problems with mounting internal and external sdcard. System won't mount it by himself.
Using the DiskInfo I've found all disk partitions in the phone. Internal sdcard is /dev/block/mmcblk0p16 and external sdcard is /dev/block/mmclbk1p1.
Manual mount (mount -t vfat /dev/block/mmcblk0p16 /mnt/sdcard) over terminal emulator, or adb shell works, but applications don't recognize changes, and they're still requesting for connect a storage device.
I've already tried to modify /etc/vold.fstab - original vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/omap/omap_hsmmc.0/mmc_host
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
my modified vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 16 /sys/devices/platform/omap/omap_hsmmc.1/mmc_host/mmc0
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /sys/devices/platform/omap/omap_hsmmc.0/mmc_host/mmc1
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
#### Testing manual mount ####
#/dev/block/mmcblk0p16 /mnt/sdcard vfat defaults,noatime 0 0
#/dev/block/mmcblk1p1 /mnt/sdcard/_ExternalSD vfat defaults,noatime 1 1
As you can see, I've modified paths from /devices/ to /sys/devices/, 'cause I can't find that path in terminal.
I also tried to put there classic linux-like mountpoints, but after reboot, all applications working with storage (camera, gallery) were crashing.
Next try was to modify init.cosmo.rc, and force mountpoints, but there was same problem with applications, they were crashing.
Actual ROM: http://forum.xda-developers.com/showthread.php?t=2407418 - flashed today using CWM.
Yesterday I was using - cm-10-20130707-NIGHTLY-p920 - same problem.
Thanks for every response (and sorry for my english).
Click to expand...
Click to collapse
Try LG tool in emergency mode install a fresh rom stock and tr this:
1. Hold the Home and Volume Down button
2. Press and hold the Power button until the device turns on, then release buttons when LG logo appears.
3. Follow the on-screen instructions on how to reset your LG Optimus 3D P920
Wait 'till the process finish. Once the wipe is complete, the phone will reboot to its factory fresh default state settings. All data you previously installed on it already been deleted.
Privacy > Personal data >Factory data reset – Erases all your personal data from internal phone
storage, including information about your Google account and any other accounts, your system/application data and settings, any downloaded
applications and your DRM licence.
Resetting the phone will not erase any system software updates you have downloaded or any files on your microSD card, such as music
or photos. If you reset the phone this way, you will be prompted to re-enter the same information as when you first started Android.
If the phone does not respond to user input, or the screen freezes: Remove the battery, reinsert it and switch on the phone.
Stock roms here: https://drive.google.com/folderview?id=0B36wHsfD85m5NGJZN04zRmdIQTQ&usp=sharing&tid=0B36wHsfD85m5aDNUWVdCM3EwN3c
Related
My unit is an LG Optimus 3D Cube (SU870) running on official ICS. I need help editing the vold.fstab file so that the phone would swap the internal SD with the External SD.
This is what's currently in my vold.fstab
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/omap/omap_hsmmc.0/mmc_host
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
Thanks in advance to anyone who could help
Ok, guys. I have a question hopefully some with more experience can answer.
In the file above I made a swap and renamed:
_ExternalSd to sdcard
sdcard to _InternalSD
But I didn't try it out because ICS came out and I lost interest for a bit.
That would, hopefully, make the external SD card the main card and more games could be installed.
Would that swap make any problems? Any downsides of this swap?
Hi,
I've seem to have lost my internal sd card as well as my external sd card after messing with the vold.fstab file, then put all the lines in the file the way they were before but both SD's fail to mount (i assume that they fail to mount since the tablet recognizes i'm inserting the external sd)...
Any ideas??
Here the vold.fstab file:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
#dev_mount sdcard /mnt/sdcard auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
dev_mount LOCAL /mnt/sdcard 6 /devices/platform/imap-mmc.1/mmc_host/mmc0
dev_mount SDCARD /mnt/sdcard/sdcard1 auto /devices/platform/imap-mmc.1/mmc_host/mmc0
dev_mount UDISK1 /mnt/sdcard/udisk1 auto /devices/platform/dwc_otg/usb3/3-1/3-1:1.0 /devices/platform/imap-ehci/usb1/1-3/1-3:1.0
dev_mount UDISK2 /mnt/sdcard/udisk2 auto /devices/platform/imap-ehci/usb1/1-1/1-1:1.0 /devices/platform/imap-ehci/usb1/1-2/1-2:1.0
#dev_mount UDISK2 /mnt/sdcard/udisk2 1 /devices/platform/imap-ehci/usb1/1-2/1-2:1.0
## Example of a dual card setup
# dev_mount left_sdcard /sdcard1 auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
# dev_mount right_sdcard /sdcard2 auto /devices/platform/goldfish_mmc.1 /devices/platform/msm_sdcc.3/mmc_host/mmc1
## Example of specifying a specific partition for mounts
# dev_mount sdcard /sdcard 2 /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
Thx, i really need help on this one!!!
Hi!
I bought a microSD 32GB and want to install game which I before can't play because Optimus has only 8GB space.
I've got Jelly Cream Sandwich V3 with Shazo's Kernel, every data was installed on sdcard, another like Bard's Tale on __externalSD. I'm try to bind directory in Lucky Patcher, in Directory Binder, in GL2SD. Maybe is the way to standard install app data on this ExternalSD?
Or maybe someone try to bind files from Vice City/GTA 3/Asphalt 8, The Condiut?
Kryzyss said:
Hi!
I bought a microSD 32GB and want to install game which I before can't play because Optimus has only 8GB space.
I've got Jelly Cream Sandwich V3 with Shazo's Kernel, every data was installed on sdcard, another like Bard's Tale on __externalSD. I'm try to bind directory in Lucky Patcher, in Directory Binder, in GL2SD. Maybe is the way to standard install app data on this ExternalSD?
Or maybe someone try to bind files from Vice City/GTA 3/Asphalt 8, The Condiut?
Click to expand...
Click to collapse
try change vold to this
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
dev_mount sdcard /mnt/sdcard auto /devices/platform/omap/omap_hsmmc.0/mmc_host
dev_mount extsdcard /mnt/sdcard/_ExternalSD 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
it will swap int sd with ext sd
I have that, I changed sdcard witaj externalsd niedobre Trentino to bind data and not working. Let's try again.
In file vold.fstab I have that:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/omap/omap_hsmmc.0/mmc_host
#dev_mount sdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
Click to expand...
Click to collapse
Need to be that?
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard/_ExternalSD 15 /devices/platform/omap/omap_hsmmc.1/mmc_host
dev_mount extsdcard /mnt/sdcard auto /devices/platform/omap/omap_hsmmc.0/mmc_host
#dev_mount sdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
#dev_mount extsdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
Click to expand...
Click to collapse
Hello all
I searched more and more about swapping external sd to internal sd but i didn't find any method competible with
my alcatel 985D , when i open vold.fstab to edit it, I only find one line as you see in the following paste
"
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## 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
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard auto /devices/platform/goldfish_mmc.0 /devices/platform/mt6573-sd.0/mmc_host/mmc0
## Example of a dual card setup
# dev_mount left_sdcard /mnt/sdcard1 auto /devices/platform/goldfish_mmc.0 /devices/platform/mt6516-sd.0/mmc_host/mmc0
# dev_mount right_sdcard /mnt/sdcard2 auto /devices/platform/goldfish_mmc.1 /devices/platform/mt6516-sd.2/mmc_host/mmc2
## Example of specifying a specific partition for mounts
# dev_mount sdcard /mnt/sdcard 2 /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
"
I tried to add a new line reffering to my internal sd but i didn't make it
any help plz
Friends, I tried using a script to change my internal memory standard to the outside, it worked, but now recognize my memory card as internal memory and try to install on the outside, so that I can not install anything.
someone has vold.fstab file Experia c2304 you can pass me so I reset my phone?
*********************************************
I find on site this tutorial to install stock rom
http : // www . sonymobile . com / in/ tools / update-service /
when you follow the first steps he will say that you already have the latest version of the system, there is only continue it installs the stock rom
Here you go
Stock vold.fstab
https://mega.co.nz/#!Jd4FQJpT!fC5I-CSu3yvOxqm31MGmkmhc5R8RmkluXOUJmJYgqu0
Or
You can even copy-paste the below content to your existing vold.fstab file
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## Regular device mount
##
## Format: dev_mount
## label - Label for the volume
## mount_point - Where the volume will be mounted
## part - Partition # (1 based), or 'auto' for first usable partition.
## - List of sysfs paths to source devices
######################
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /storage/sdcard0 [email protected] /devices/platform/goldfish_mmc.0 /devices/platform/mtk-msdc.0/mmc_host
dev_mount sdcard2 /storage/sdcard1 auto /devices/platform/goldfish_mmc.1 /devices/platform/mtk-msdc.1/mmc_host
## Example of a dual card setup
# dev_mount left_sdcard /mnt/sdcard1 auto /devices/platform/goldfish_mmc.0 /devices/platform/mtk-sd.0/mmc_host/mmc0
# dev_mount right_sdcard /mnt/sdcard2 auto /devices/platform/goldfish_mmc.1 /devices/platform/mtk-sd.2/mmc_host/mmc2
## Example of specifying a specific partition for mounts
# dev_mount sdcard /mnt/sdcard 2 /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
# usb otg disk
dev_mount usbotg /mnt/usbotg auto /devices/platform/mt_usb /devices/platform/musbfsh_hdrc
Click to expand...
Click to collapse