Help request - USB Host mode - Xoom Q&A, Help & Troubleshooting

Xoom : wifi only
Honeycomb : 3.1
Kernel : Tiamat 1.4.2
When I open a terminal on my Xoom and type : "CD /dev/block " then "ls " I can see SDA... which is my USB drive or Incredible plugged in to otg host cable.
But when I type "busybox mount /dev/block/sda1/mnt/usbotg " the response is: "mount: can't read '/etc/fstab' : No such file or directory"
What steps can I take to get my devices to mount?
Here are the full copy/paste contents of etc/vold/fstab :
## Vold 2.0 fstab for Stingray
#######################
## 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
######################
# There's so much winning to do here
dev_mount usbOTG /mnt/usbOTG auto /devices/platform/tegra-ehci
dev_mount external /mnt/external auto /devices/platform/sdhci-tegra.2/mmc_host/mmc2

I use this USB host cable and it works great (you have to use a USB "HOST" cable, not just a regular cable. Have tested it with my 750gb Oyen and 320gb WD Passport external HDD's, several usb flash drives (8-16gb), San disk USB memory card reader, and a USB keyboard.
For those having issues getting their Xoom to recognize USB storage devices here's what I've got and did to get it to work: I flashed my XOOM (3.1) to the 2.6.36.4 Tiamat_Xoom-v1.4.4-Full_Throttle Kernel and was unable to get the USBMount to recognize drives or storage at first.
I installed USB Mass Storage Watcher from the market (it's free) and it works awesome! Can mount any storage I want (NTFS, FAT16/32, HFS, HFS+, EXT2, ETX3, EXT4) with any capacity. I think this app will work with any rooted Xoom (or other devices). Under my Kernel my USB host is located under/usbOTG.
Hope this helps.

Related

mount via USB on Linux ?

I'm trying to mount my G1 via USB and can't seem to. When I plug it in, I see this in /var/log/messages:
Nov 17 05:20:03 flatcoat kernel: [112494.982744] usb 2-1: new full speed USB device using ohci_hcd and address 3
Nov 17 05:20:03 flatcoat kernel: [112495.210830] usb 2-1: configuration #1 chosen from 1 choice
Nov 17 05:20:04 flatcoat kernel: [112495.233817] scsi3 : SCSI emulation for USB Mass Storage devices
Then every few seconds, it prints:
Nov 17 05:20:14 flatcoat kernel: [112505.906093] usb 2-1: reset full speed USB device using ohci_hcd and address 3
Finally it prints:
Nov 17 05:20:52 flatcoat kernel: [112543.758318] scsi 3:0:0:0: Device offlined - not ready after error recovery
I see the notification on the G1, and tell it that I want to mount. (Does this mount something ? Or let it be mounted ?)
In any case, as I'm entering:
mount /dev/sdb1 /mnt
I get:
mount: special device /dev/sdb1 does not exist
I've also tried sdb2... and sdc1...
Any suggestions ?
Until you activate the mount option on the G1, it will not expose any USB Mass Storage devices to the host. Try connecting G1 to your pc, activate mount on G1, then run dmesg on pc to see what name the device has been assigned.
What flavor of Linux are you runing?
What exactly are you trying to mount? The SD card or the phone?
Do you even know what the mount option on the G1 does?
Do you have USB Debbugin enabled?
If you can't answer some of these questions, I would recomend (and in no means am I trying to bash you) "UNDERSTANDING" your phone. Also, have you used the "search" option.
I can help, so answer those questions up top.
jashsu said:
Until you activate the mount option on the G1, it will not expose any USB Mass Storage devices to the host. Try connecting G1 to your pc, activate mount on G1, then run dmesg on pc to see what name the device has been assigned.
Click to expand...
Click to collapse
I guess I wasn't clear enough but that is exactly what I did, and showed the output of. My point is that no device (at least in the /dev/sdb1 sense) was displayed.
Does this mean a kernel module is missing ? (usb-storage does get loaded) or more that something like hal is not set up correctly ?
I haven't had a linux not seamlessly auto-node and auto-mount my usb stuff for a long time.
Anyway if you have usb-storage and ohci_hcd then I don't think anything is missing. Try lsusb to see if the device is showing on the usb bus. Also, if you haven't already done so try mounting the G1 on another computer. Could possibly be a junk usb cable.
For future reference to anyone who runs across this issue:
Spent a while trying to figure this out...
In linux, before scanning for a partition, it waits for the device to settle. For some reason the G1 doesn't "settle."
To force scan for a partition run:
"fdisk -l /dev/sdb"
(depenind on devices currently mounted, you need to scan for the next partition letter
example /dev/sdc or /dev/sdd)
The reason this isnt a problem for Windows.. etc is because windows does not wait for the device to settle before scanning.
Good luck.
As has been suggested, you probably have a bad cable.
Finding and Mounting an HTC G1
dmesg is helpful. You need to have allowed mounting in the USB connection dialog (among alerts) on the phone. This must be done every time it is plugged into the USB.
Another way to see what device name your mass storage device landed on is to install and run lsscsi. Here's what mine looks like with my HTC G1 plugged in:
eshpc dev # lsscsi
[0:0:0:0] disk Generic USB SD Reader 1.00 /dev/sda
[0:0:0:1] disk Generic USB CF Reader 1.01 /dev/sdb
[0:0:0:2] disk Generic USB SM Reader 1.02 /dev/sdc
[0:0:0:3] disk Generic USB MS Reader 1.03 /dev/sdd
[2:0:0:0] disk HTC Android Phone 0100 /dev/sde
eshpc dev # fdisk -l /dev/sde
Disk /dev/sde: 1004 MB, 1004535808 bytes
7 heads, 38 sectors/track, 7375 cylinders
Units = cylinders of 266 * 512 = 136192 bytes
Disk identifier: 0x7e76f81a
Device Boot Start End Blocks Id System
/dev/sde1 1 7376 980864+ 6 FAT16
eshpc dev # mount /dev/sde1 /mnt/g1
eshpc dev # ls /mnt/g1
Music amazonmp3 dcim froogloid pdf tmp
albumthumbs appmanager download nandroid recovery-backup.img where
That is the contents of my sdcard.
Seen mounting errors happen twice, once was a bad cable, other time was too many devices plugged into a usb hub.
Constrabus said:
For future reference to anyone who runs across this issue:
Spent a while trying to figure this out...
In linux, before scanning for a partition, it waits for the device to settle. For some reason the G1 doesn't "settle."
To force scan for a partition run:
"fdisk -l /dev/sdb"
(depenind on devices currently mounted, you need to scan for the next partition letter
example /dev/sdc or /dev/sdd)
The reason this isnt a problem for Windows.. etc is because windows does not wait for the device to settle before scanning.
Good luck.
Click to expand...
Click to collapse
This is indeed helpful. Could you be more explicit about what you meant by 'settle'?

[i9001][MOD]Swap Ur internal and external sd card!

Hey guyzz....this is an awesome tweak...it will swap ur internal sd card with the external one!
I have seen many forum members requesting for a method to increase the internal sdcard memory to enable installing games, which generally require high memory storage space or storing maps for example for standalone GPS navigation system. Again such maps requires to be stored on internal memory card for them to work. All this is possible using this mod.
Special credits to noigel!
InstallationUSE ROOT EXPLORER OR ADB)
1)Backup ur vold.fstab from /system/etc
2)cREATE an empty file and enter these contents-
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
######################
# sdcard mount for the P1
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
discard = disable
asec = disable
}
dev_mount sdcard /mnt/sdcard/external_sd 28 /devices/platform/msm_sdcc.2/mmc_host/mmc1
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount sdcard1 /mnt/sdcard auto /devices/platform/msm_sdcc.4/mmc_host/mmc2
#end line ## keep this line
3)Reboot and enjoy!!
I am NOT RESPONSIBLE IF U SCREW UP UR DEVICE
There is no attached files
check again
Installed successfully, but I can't notice differences
sure....?how did u check for difference?
(sorry for above question )
Maybe is better
karo_96 said:
Installed successfully, but I can't notice differences
Click to expand...
Click to collapse
it wont make anything "Better"!
compare the size of ur internal sd before installing this mod and then after installing!
sakindia123 said:
it wont make anything "Better"!
compare the size of ur internal sd before installing this mod and then after installing!
Click to expand...
Click to collapse
Ohh... Thanks
did it do anything?
sakindia123 said:
did it do anything?
Click to expand...
Click to collapse
Nope
After reboot i don't have any memory available
Back to stock.
promi said:
After reboot i don't have any memory available
Back to stock.
Click to expand...
Click to collapse
i am sure u had an extrenal sd?
dont work it is useless,only says mem unavailable, if u do it then u have to go for stock rom again
sakindia123 said:
i am sure u had an extrenal sd?
Click to expand...
Click to collapse
Yes.
i had messages "unavailable" under both internal and external memory.
Does not work! Gone internal and external memory. I had to restore the system ROM
sakindia123 said:
i am sure u had an extrenal sd?
Click to expand...
Click to collapse
You must change the script for the right partitions!
netchip said:
You must change the script for the right partitions!
Click to expand...
Click to collapse
u r talking about dev_mount_sdcard and ums_path ,right?
Nice trick for gamme......
@ sakindia123
Does this Mod actually works, have u modified your vold.fstab after u get the response that it does not work.
Want to increase my interal SD, but only want to try it, if it really works, dont want to reflash ;-)
Can someone confirm that the mod is still workin, Screenshot would be nice.
Thanks
olli
Masterolli said:
@ sakindia123
Does this Mod actually works, have u modified your vold.fstab after u get the response that it does not work.
Want to increase my interal SD, but only want to try it, if it really works, dont want to reflash ;-)
Can someone confirm that the mod is still workin, Screenshot would be nice.
Thanks
olli
Click to expand...
Click to collapse
I just chance but don´t work!!!!!!
This post have a wrong title.
Now i must be reflash!!!!!

Internal/External SD Memory

Hey guys, I'm sure this is a fairly common problem that us "Blaze" users are having issues with but I haven't figured out a way around it. As we all know, Blaze only came with about 1.5g of "Internal SD" memory while the "External SD" memory could be expended. This becomes a problem as the "Internal SD" is the default storage for apps, especially when you are trying to download a game that is more than 1.5g. I've looked into "Directory Bind" app but that's only really to move the app files from internal into external, AFTER it has been downloaded and install on the phone and point to its new location. Ive heard about Internal/External reverse mount tweaks, but haven't found one specifically for our phone. Does anyone know if there is a way around this? So what I'm basically asking is this: Can we use the External SD as the default storage for apps and games? And have the apps/games installed to the external SD location?
Sent from my SGH-T769 using xda app-developers app
+1 on this, would love to see something
I have the same question if you find something let me know.
Sent from my SGH-T769 using xda premium
Desertstorm00 said:
Hey guys, I'm sure this is a fairly common problem that us "Blaze" users are having issues with but I haven't figured out a way around it. As we all know, Blaze only came with about 1.5g of "Internal SD" memory while the "External SD" memory could be expended. This becomes a problem as the "Internal SD" is the default storage for apps, especially when you are trying to download a game that is more than 1.5g. I've looked into "Directory Bind" app but that's only really to move the app files from internal into external, AFTER it has been downloaded and install on the phone and point to its new location. Ive heard about Internal/External reverse mount tweaks, but haven't found one specifically for our phone. Does anyone know if there is a way around this? So what I'm basically asking is this: Can we use the External SD as the default storage for apps and games? And have the apps/games installed to the external SD location?
Sent from my SGH-T769 using xda app-developers app
Click to expand...
Click to collapse
as a matter of fact, I have found a way to switch the internal/external sd mount points. You need to go into /etc/ using Script Manager and edit the vold.fstab file. Inside, you will find this:
Originally Posted by crazydrummer95 View Post
okay so heres what it looks like:
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = enable
format_option = -r 2272
}
dev_mount sdcard /mnt/sdcard 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
#external sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
#otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/msm_hsusb_host.0
#end line
you need to change the lines :
dev_mount sdcard /mnt/sdcard 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
and make it look like this:
dev_mount sdcard /mnt/sdcard/external_sd 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
dev_mount sdcard /mnt/sdcard auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
Thanks! I will give it a try.
Sent from my SGH-T769 using xda app-developers app
Desertstorm00 said:
Thanks! I will give it a try.
Sent from my SGH-T769 using xda app-developers app
Click to expand...
Click to collapse
Just for future reference, Make sure you do a little research about the question you are asking. There is a thread exactly like this one in the dev section.
crazydrummer95 said:
Just for future reference, Make sure you do a little research about the question you are asking. There is a thread exactly like this one in the dev section.
Click to expand...
Click to collapse
Oh. Right. You started it.
Sent from my SGH-T769 using xda app-developers app
crazydrummer95 said:
as a matter of fact, I have found a way to switch the internal/external sd mount points. You need to go into /etc/ using Script Manager and edit the vold.fstab file. Inside, you will find this:
Originally Posted by crazydrummer95 View Post
okay so heres what it looks like:
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = enable
format_option = -r 2272
}
dev_mount sdcard /mnt/sdcard 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
#external sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
#otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/msm_hsusb_host.0
#end line
you need to change the lines :
dev_mount sdcard /mnt/sdcard 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
and make it look like this:
dev_mount sdcard /mnt/sdcard/external_sd 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
dev_mount sdcard /mnt/sdcard auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
Click to expand...
Click to collapse
I tried to do this in script manager and it said i was opening a read only file. Tried to open directly, wouldn't let me save. Tried to open a local copy and script manager force closed. Then tried Root Explorer. Still wouldn't let me save. Even tried copying vold.fstab to my sd card, editing it, deleting the copy inside /etc and pasting the edited version, operation failed.
am i missing something?
jparnell8839 said:
I tried to do this in script manager and it said i was opening a read only file. Tried to open directly, wouldn't let me save. Tried to open a local copy and script manager force closed. Then tried Root Explorer. Still wouldn't let me save. Even tried copying vold.fstab to my sd card, editing it, deleting the copy inside /etc and pasting the edited version, operation failed.
am i missing something?
Click to expand...
Click to collapse
did you mount the directory as r/w, in root explorer its a gray button at the top
masterofthedamned said:
did you mount the directory as r/w, in root explorer its a gray button at the top
Click to expand...
Click to collapse
I meant root browser. But, I even downloaded Droid Explorer to run it on my computer, no go. Eventually, Root Explorer did allow me to edit but upon reboot, the process android.process.media kept force closing.
Does this vold thing work?
jparnell8839 said:
I meant root browser. But, I even downloaded Droid Explorer to run it on my computer, no go. Eventually, Root Explorer did allow me to edit but upon reboot, the process android.process.media kept force closing.
Click to expand...
Click to collapse
Download Script Manager from the Play Store
I'm going to implement this into my next build of pa...
Sent from my SAMSUNG-SGH-I727 using xda app-developers app
For those running some iteration of the stock Touchwiz-skinned ICS rom (whether custom or just stock rooted), you can always try flashing this (md5 829584F66F2F13419639A0F77AEC2033) in whatever non-stock recovery you happen to be using. This replaces the vold.fstab with one merwinski tweaked (so the internal/external sd swap stuff happens), and includes a script I put together that moves some relevant files from one to the other for you (in other words - anything you selected to move to SD via Settings > Applications should still be there and usable after flashing this). All usual disclaimers apply (i.e. I'm not responsible for breaking blah blah etc.), but if for whatever reason you want to go back to how it was before you can flash this (md5 A38CD198B5DB73209441D4A6250D33C4) and that will undo everything (including the file moving) that was done with the first one.
Hope this helps folks, and just because it bears repeating - THIS HAS ONLY BEEN TESTED ON STOCK ROMS, NOT ANY OF THE AOSP/CM BASED ONES! IT WILL VERY LIKELY NOT WORK ON THOSE!
thomas.raines said:
I'm going to implement this into my next build of pa...
Sent from my SAMSUNG-SGH-I727 using xda app-developers app
Click to expand...
Click to collapse
Patiently waiting!!!
paranoidandroidpoweredBLAZE!!
I thought it worked...
Alright, So i'm running CWM and I used your VOLDSwap. Now, It worked from the look. my phone storage is 3gb now and my SD is 1.2gb. so when I look at all my storages at the same time, I see my phone storage (1.2gb) my USB storage, which is now my SD card. It was 1.2 gb now its 3.8 gb. and my SD card which is now my USB storage at 1.2gb.
here is my problem, in theory I should be able to install to the "USB directory" because that is now my actual SD card, however; when I do this, i still bypasses my USB storage (my actual SD card) and still installs it to my actual USB storage (1.2gb and also being recognized right now as my SD card) so what can I do to fix this? I love that my USB storage says 3.8 gb, but it's pointless if it still uses my Sudo USB storage of 1.2 gb? is there anyway to rewrite the install directory. because It still installs to my phone but instead of going to the USB storage like it used to, because my USB and SD are swapped now, it instead heads to my USB which is labled as my SD... it's like.. no matter what I do I can't get it to install to my higher gb storage location.. any help would be beyond appreciated.
hollow2318 said:
Alright, So i'm running CWM and I used your VOLDSwap. Now, It worked from the look. my phone storage is 3gb now and my SD is 1.2gb. so when I look at all my storages at the same time, I see my phone storage (1.2gb) my USB storage, which is now my SD card. It was 1.2 gb now its 3.8 gb. and my SD card which is now my USB storage at 1.2gb.
here is my problem, in theory I should be able to install to the "USB directory" because that is now my actual SD card, however; when I do this, i still bypasses my USB storage (my actual SD card) and still installs it to my actual USB storage (1.2gb and also being recognized right now as my SD card) so what can I do to fix this? I love that my USB storage says 3.8 gb, but it's pointless if it still uses my Sudo USB storage of 1.2 gb? is there anyway to rewrite the install directory. because It still installs to my phone but instead of going to the USB storage like it used to, because my USB and SD are swapped now, it instead heads to my USB which is labled as my SD... it's like.. no matter what I do I can't get it to install to my higher gb storage location.. any help would be beyond appreciated.
Click to expand...
Click to collapse
I've had the same problem someone I forget who posted this vold change(don't feel like reading hundreds of posts to find who but thanks lol) and has worked wonders for me with no issues so far. Switch it out and make sure permissions are set correctly.
http://db.tt/byVnF6Cc
Here the outcome
## 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
## storage_struct - ex) series, "/mnt/sdcard/extStorages" / parallel
######################
# internal sdcard
dev_mount sdcard /storage/sdcard1 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
# external sdcard
dev_mount external_sd /storage/sdcard0 auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
#otg sdcard
dev_mount sda /mnt/usbdisk auto /devices/platform/msm_hsusb_host.0
Sent from my AOKP Blaze
set right RW-RW-RW and change strings
dev_mount sdcard /mnt/sdcard 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
to:
dev_mount sdcard /mnt/sdcard/external_sd 28 /devices/platform/msm_sdcc.1/mmc_host/mmc0/mmc0
dev_mount sdcard /mnt/sdcard auto /devices/platform/msm_sdcc.3/mmc_host/mmc2/mmc2
main my question: if now unroot device will it work?
On root device i have big trouble to connect GSM NETWORK

Convert External SD to Internal SD Android (Specially For Low Budget Devices)

After installing a couple of games and apps, Android tells you that you are out of storage space. So you head on to ebay and buy the largest sd card your credit card can buy. You slap in your brand new sd card and head on to install more apps, only to find out you still have no storage space left despite moving apps to sd card.​
What is The Problem?
Android tablets in general, has a different directory structure compared to Android phones. Mine has 504MB for apps (in system), 2.08Gb Internal storage (sdcard), and mounts external sd cards as (extsd). By default, external sd cards (extsd) are only used for media storage. Unfortunately, apps only recognizes sdcard, so your media files will still need to be transferred to internal storage for it to be played. What's the point?
This Is A HACK
This hack will swap the position of the internal sd card to the external one you bought earlier.
First You Need To Root Your Device.
Read My Post To Root Your Device In Minutes http://forum.xda-developers.com/showthread.php?p=41020487#post41020487
What Will You Need
A Rooted Device
Root Explorer (Attached Below)
Instruction
Install Root Explorer.
Grant SuperUser Access to Root Explorer (When Asked).
Locate '/etc' in Root Explorer.
Click On 'Mount R/W'.
Hold 'vold.fstab' And Select Edit in Text Editor.
And Convert
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0/devices/platform/sw-ohci.1 /devices/plaform/sw-ohci.2
TO
dev_mount extsd /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount sdcard /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0/devices/platform/sw-ohci.1 /devices/plaform/sw-ohci.2​
Save it. (Don't Worry The Original File will be there named 'vold.fstab.bak')
Restart Your Device
Check Weather You Can Move Aps to External Storage.
If Not..??
Then Again Open 'vold.fstab' in Text Editor
And Convert
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0 /devices/platform/sw-ohci.1/devices/plaform/sw-ohci.2
TO
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0 /devices/platform/sw-ohci.1/devices/plaform/sw-ohci.2
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1​
And Restart Your Device
Tested Devices
BSNL Penta
T-Pad IS709C
T-Pad IS701C
T-Pad IS703C
T-Pad IS801C
T-Pad WS802C-2G
T-Pad WS802C-3G
T-Pad WS703C-2G
T-Pad WS704C-3G
T-Pad WS707C-EDGE
T-Pad WS708C-2G
Micromax
Micromax Funbook Talk P362
Micromax Funbook 3G P560
Micromax Funbook Talk P360
Micromax Funbook Talk P362
Micromax Funbook 3G P600
Micromax Funbook P300
UbiSlate
UbiSlate 7R Plus
UbiSlate 7C Plus Edge
Still Facing Problem..??
Contact Me On Facebook At https://www.facebook.com/DaNish.AnSari.1994
PLEASE QUOTE FOR FURTHER INFO.
will it work for mobile phones
pllzzz reply ,will it work for mobil phones
Hey, nice tutorial, but does this also work with Sony Xperia devices or just android phones in general?:laugh:
Need Help
Hi , please find the attached screen shot of Vold file from root explorer as you asked. Kindly advise me if i need to delet all this and type what yoy have mentioned or what do i need to change .
Novice at Rooting
Thanks for the hack. I am trying to root my Visual Land Connect 4. I got everything to work except I can't find /etc on my root checker. Where should I be if not in here?
danish1994 said:
After installing a couple of games and apps, Android tells you that you are out of storage space. So you head on to ebay and buy the largest sd card your credit card can buy. You slap in your brand new sd card and head on to install more apps, only to find out you still have no storage space left despite moving apps to sd card.​
What is The Problem?
Android tablets in general, has a different directory structure compared to Android phones. Mine has 504MB for apps (in system), 2.08Gb Internal storage (sdcard), and mounts external sd cards as (extsd). By default, external sd cards (extsd) are only used for media storage. Unfortunately, apps only recognizes sdcard, so your media files will still need to be transferred to internal storage for it to be played. What's the point?
This Is A HACK
This hack will swap the position of the internal sd card to the external one you bought earlier.
First You Need To Root Your Device.
Read My Post To Root Your Device In Minutes http://forum.xda-developers.com/showthread.php?p=41020487#post41020487
What Will You Need
A Rooted Device
Root Explorer (Attached Below)
Instruction
Install Root Explorer.
Grant SuperUser Access to Root Explorer (When Asked).
Locate '/etc' in Root Explorer.
Click On 'Mount R/W'.
Hold 'vold.fstab' And Select Edit in Text Editor.
And Convert
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0/devices/platform/sw-ohci.1 /devices/plaform/sw-ohci.2
TO
dev_mount extsd /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount sdcard /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0/devices/platform/sw-ohci.1 /devices/plaform/sw-ohci.2​
Save it. (Don't Worry The Original File will be there named 'vold.fstab.bak')
Restart Your Device
Check Weather You Can Move Aps to External Storage.
If Not..??
Then Again Open 'vold.fstab' in Text Editor
And Convert
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0 /devices/platform/sw-ohci.1/devices/plaform/sw-ohci.2
TO
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0 /devices/platform/sw-ohci.1/devices/plaform/sw-ohci.2
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1​
And Restart Your Device
Tested Devices
BSNL Penta
T-Pad IS709C
T-Pad IS701C
T-Pad IS703C
T-Pad IS801C
T-Pad WS802C-2G
T-Pad WS802C-3G
T-Pad WS703C-2G
T-Pad WS704C-3G
T-Pad WS707C-EDGE
T-Pad WS708C-2G
Micromax
Micromax Funbook Talk P362
Micromax Funbook 3G P560
Micromax Funbook Talk P360
Micromax Funbook Talk P362
Micromax Funbook 3G P600
Micromax Funbook P300
UbiSlate
UbiSlate 7R Plus
UbiSlate 7C Plus Edge
Still Facing Problem..??
Contact Me On Facebook At /DaNish.AnSari.1994
Click to expand...
Click to collapse
First of all your work is highly appreciated.
Secondly u mentioned that this process is tested on funbook talk p362. I have it too.
But the adb drivers are nowhere to be found.
You will say turn on USB-DEBUGGING and it will install drivers automatically. but no none of that works...tried with internet connection on. but driver update says no driver found for this device.
I ll be highly thankful to you if you helped me rooting my funbook talk. or provide me the necessary drivers.
and for your information i downloaded a ADB Drivers.rar file....and it installed drivers too....but android sdk does not recognises the adb device.
moomoopobo said:
Hey, nice tutorial, but does this also work with Sony Xperia devices or just android phones in general?:laugh:
Click to expand...
Click to collapse
It will work on all ICS nd JB devices, which have an external sd slot...
delhi71 said:
Hi , please find the attached screen shot of Vold file from root explorer as you asked. Kindly advise me if i need to delet all this and type what yoy have mentioned or what do i need to change .
Click to expand...
Click to collapse
just replace flash with sdcard nd vice versa..
awesome man said:
pllzzz reply ,will it work for mobil phones
Click to expand...
Click to collapse
ya it wil..
its for all devices running on JB nd ICS..
mmixdupp2 said:
Thanks for the hack. I am trying to root my Visual Land Connect 4. I got everything to work except I can't find /etc on my root checker. Where should I be if not in here?
Click to expand...
Click to collapse
not on root checker. It will be there in root explorer..
you first need to root your device before you can edit that file..
ando dev said:
First of all your work is highly appreciated.
Secondly u mentioned that this process is tested on funbook talk p362. I have it too.
But the adb drivers are nowhere to be found.
You will say turn on USB-DEBUGGING and it will install drivers automatically. but no none of that works...tried with internet connection on. but driver update says no driver found for this device.
I ll be highly thankful to you if you helped me rooting my funbook talk. or provide me the necessary drivers.
and for your information i downloaded a ADB Drivers.rar file....and it installed drivers too....but android sdk does not recognises the adb device.
Click to expand...
Click to collapse
if it don't download adb driver itself then you need to download it manually form micromax website..
it that to didn't work, then will upload an app soon which might help you to root your device..
danish1994 said:
if it don't download adb driver itself then you need to download it manually form micromax website..
it that to didn't work, then will upload an app soon which might help you to root your device..
Click to expand...
Click to collapse
There are no drivers for Funbook P362...see for yourself.!!!
ando dev said:
First of all your work is highly appreciated.
Secondly u mentioned that this process is tested on funbook talk p362. I have it too.
But the adb drivers are nowhere to be found.
You will say turn on USB-DEBUGGING and it will install drivers automatically. but no none of that works...tried with internet connection on. but driver update says no driver found for this device.
I ll be highly thankful to you if you helped me rooting my funbook talk. or provide me the necessary drivers.
and for your information i downloaded a ADB Drivers.rar file....and it installed drivers too....but android sdk does not recognises the adb device.
Click to expand...
Click to collapse
Simple.. just go to this thread it will automatically install drivers and root INA minute this method is tested by me,I am also having the same tab..
http://forum.xda-developers.com/showthread.php?t=2403230
If u don't have cwm to replace Chinese superuser download supersu from play store and it will do it without cwm..
Hit thanks if I helped.... :good:
---------- Post added at 06:58 AM ---------- Previous post was at 06:52 AM ----------
danish1994 said:
After installing a couple of games and apps, Android tells you that you are out of storage space. So you head on to ebay and buy the largest sd card your credit card can buy. You slap in your brand new sd card and head on to install more apps, only to find out you still have no storage space left despite moving apps to sd card.​
What is The Problem?
Android tablets in general, has a different directory structure compared to Android phones. Mine has 504MB for apps (in system), 2.08Gb Internal storage (sdcard), and mounts external sd cards as (extsd). By default, external sd cards (extsd) are only used for media storage. Unfortunately, apps only recognizes sdcard, so your media files will still need to be transferred to internal storage for it to be played. What's the point?
This Is A HACK
This hack will swap the position of the internal sd card to the external one you bought earlier.
First You Need To Root Your Device.
Read My Post To Root Your Device In Minutes http://forum.xda-developers.com/showthread.php?p=41020487#post41020487
What Will You Need
A Rooted Device
Root Explorer (Attached Below)
Instruction
Install Root Explorer.
Grant SuperUser Access to Root Explorer (When Asked).
Locate '/etc' in Root Explorer.
Click On 'Mount R/W'.
Hold 'vold.fstab' And Select Edit in Text Editor.
And Convert
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0/devices/platform/sw-ohci.1 /devices/plaform/sw-ohci.2
TO
dev_mount extsd /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount sdcard /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0/devices/platform/sw-ohci.1 /devices/plaform/sw-ohci.2​
Save it. (Don't Worry The Original File will be there named 'vold.fstab.bak')
Restart Your Device
Check Weather You Can Move Aps to External Storage.
If Not..??
Then Again Open 'vold.fstab' in Text Editor
And Convert
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0 /devices/platform/sw-ohci.1/devices/plaform/sw-ohci.2
TO
dev_mount extsd /mnt/extsd auto /devices/platform/sunxi-mmc.1/mm_host /devices/platform/sw_hcd_host0 /devices/platform/sw-ohci.1/devices/plaform/sw-ohci.2
dev_mount sdcard /mnt/sdcard auto /devices/virtual/block/nand1​
And Restart Your Device
Tested Devices
BSNL Penta
T-Pad IS709C
T-Pad IS701C
T-Pad IS703C
T-Pad IS801C
T-Pad WS802C-2G
T-Pad WS802C-3G
T-Pad WS703C-2G
T-Pad WS704C-3G
T-Pad WS707C-EDGE
T-Pad WS708C-2G
Micromax
Micromax Funbook Talk P362
Micromax Funbook 3G P560
Micromax Funbook Talk P360
Micromax Funbook Talk P362
Micromax Funbook 3G P600
Micromax Funbook P300
UbiSlate
UbiSlate 7R Plus
UbiSlate 7C Plus Edge
Still Facing Problem..??
Contact Me On Facebook At /DaNish.AnSari.1994
Click to expand...
Click to collapse
Wrong method of rooting and extsd to sd I have tryed this instead bricked my tab and had to restore nandroid backup(micromax fun book p32)
My original vold
---------- Post added at 07:01 AM ---------- Previous post was at 06:58 AM ----------
## 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 flash /mnt/sdcard auto /dev/block/mtd/by-name/user
dev_mount sdcard /mnt/external_sd auto /devices/platform/rk29_sdmmc.0/mmc_host/mmc0
dev_mount udisk /mnt/usb_storage auto /devices/platform/usb20_host/usb /devices/platform/usb20_otg/usb
## 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
karan luniyal said:
Simple.. just go to this thread it will automatically install drivers and root INA minute this method is tested by me,I am also having the same tab..
http://forum.xda-developers.com/showthread.php?t=2403230
If u don't have cwm to replace Chinese superuser download supersu from play store and it will do it without cwm..
Hit thanks if I helped.... :good:
---------- Post added at 06:58 AM ---------- Previous post was at 06:52 AM ----------
Wrong method of rooting and extsd to sd I have tryed this instead bricked my tab and had to restore nandroid backup(micromax fun book p32)
My original vold
Click to expand...
Click to collapse
need method for devices whose data/internal sd is emulated by the same partition
sir, please I need a method to edit void.fstab whose internal SD and data is the same partition
vig vanx said:
sir, please I need a method to edit void.fstab whose internal SD and data is the same partition
Click to expand...
Click to collapse
you cant..
but you can assign some part of your external sd to internal memory (the memory in which the aps are installed).. by using linkSD..
karan luniyal said:
Simple.. just go to this thread it will automatically install drivers and root INA minute this method is tested by me,I am also having the same tab..
http://forum.xda-developers.com/showthread.php?t=2403230
If u don't have cwm to replace Chinese superuser download supersu from play store and it will do it without cwm..
Hit thanks if I helped.... :good:
---------- Post added at 06:58 AM ---------- Previous post was at 06:52 AM ----------
Wrong method of rooting and extsd to sd I have tryed this instead bricked my tab and had to restore nandroid backup(micromax fun book p32)
My original vold
---------- Post added at 07:01 AM ---------- Previous post was at 06:58 AM ----------
## 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 flash /mnt/sdcard auto /dev/block/mtd/by-name/user
dev_mount sdcard /mnt/external_sd auto /devices/platform/rk29_sdmmc.0/mmc_host/mmc0
dev_mount udisk /mnt/usb_storage auto /devices/platform/usb20_host/usb /devices/platform/usb20_otg/usb
## 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
Click to expand...
Click to collapse
get the firmware image of your device from official sources..
boot in recovery mode and install the firmware from the sd card
awesome man said:
pllzzz reply ,will it work for mobil phones
Click to expand...
Click to collapse
ya.. it will..
moomoopobo said:
Hey, nice tutorial, but does this also work with Sony Xperia devices or just android phones in general?:laugh:
Click to expand...
Click to collapse
any android device running on or above android 4.0.x..
For me ws802c i have this :
## 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 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0 removable,encryptable
#dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc2 removable,encryptable
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0
dev_mount extsd /mnt/extsd 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc2
dev_mount udisk /mnt/udisk 1 /devices/platform/s5p-ehci/usb1
## 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
What i shd remove or change not same to tutorials
zakiyy said:
For me ws802c i have this :
## 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 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0 removable,encryptable
#dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc2 removable,encryptable
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0
dev_mount extsd /mnt/extsd 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc2
dev_mount udisk /mnt/udisk 1 /devices/platform/s5p-ehci/usb1
## 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
What i shd remove or change not same to tutorials
Click to expand...
Click to collapse
Sdcard and extsd..

[Q] I modified /system/etc/vold.fstab and lost access to my SD card - plz help

Summary : On my Android phone, I modified /system/etc/vold.fstab and lost access to my SD card
Background:
=========
I have samsung galaxy ace GT-S5830, it has very low internal memory (181 MB).
I have an external micro SD card of 16 GB, but still couldn't install many apps due to insufficient internal memory.
I read in internet that if i modify vold.fstab and replace the word sdcard with sdcard2 in it, then my external sd card
will act as internal memory.
So I rooted my phone and got superuser app (which can allow root access to various user apps)
But I haven't installed clockworkmod recovery or any other custom ROM yet.
Problem Description:
=============
I installed ES File explorer on SD card and allowed root access to it via superuser app.
I then went to `/system/etc/` from ES file explorer , edited vold.fstab and replaced the word sdcard with sdcard2
Now i restarted my phone and the external SD is no more accessible. My "ES File Explorer" is also no more there for me to able
to undo the change that i did.
I tried intalling ES file explorer again from my data connection, but the installation fails (and phone reboots immediately).
I am not able to install any new apps.
I am unable to access my external SD card, so I can't put anything there via PC or via recovery.
I tried pressing the power button + home button to go into system recovery mode. I see only these options
Androd system recovery <3e>
* reboot system now
* apply sdcard:update.zip
* wipe data/factory reset
* wipe cache partition
When i try to select the second option, it says installation aborted as the SD card is no more accessible
I tried to select 3rd and 4th options, but that didn't help either - I think factory reset will not reset vold.fstab
I only have the default apps + superuser app now
I somehow need to find a way to get write permission to /system/etc or to `/system/etc/vold.fstab`
Luckily I found "Android Commander". Installing it on my windows PC and I am able to connect my android phone
and I am able to access root folder. But I am not able to push a modified vold.fstab to `/system/etc because`
Android Commander says "no Root Access" - It is seeing it as read only
can someone let me know how i can edit this file again ? I have a original `vold.fstab` in my PC, but I am not able to push
it to my phone via Android Commander as Android Commander is seeing it as Read Only.
Is there a way to give root access (aka read-write access) to Android Commander via superuser app on my android ?
Is there any other way to get write permission to `/system/etc/vold.fstab` so that i can modify it or replace it ?
Sounds like you corrupted your sd card,you will possibly need to buy a new one.Also try using a card reader and see if you can access it and format it,if not,its definitely corrupted.
ME TOO
I did almost the same thing
i used a sd swapper on my android ics 4.0.3 phone iball andi 5c
and it rebooted and got well no internal and ext sd card now
it's not readable\mountable,etc
can't acces my phone with pc too!!
Only debug
I think you can use ADB(Android Debug Bridge) to somehow push the file(the original void.fstab) into your sdcard(internal).
ADB's in the Android SDK. (I still can't post links)
I think you just changed the memory drive( sdcard -> sdcard2). So when you tried to access your sdcard, the ROM has no idea where it is.
I could've sworn I saw something about your problem somewhere around here.
cannot install by defaut on extsdcard apps
Hello to all,
I have read most post and used all recommendation but non seem to work,
what phone i have? is a galaxy Y gt s6310l android 4.1.2 and its already rooted
i need to know how to edit the vold.fstab in order to be able to install by default any app from google play or thirs party apps to the extSDcard and not internal or emulated sdcard0 that the phone has.....
i have tryed apps such as lin2s, mount2sd and serveral other non do the trck, not even after i rooted the phone can do so
the file code is:
# Copyright (c) 2011, Code Aurora Forum. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of Code Aurora Forum, Inc. nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
## 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
######################
#storage_struct = series, "/mnt/sdcard/extStorages"
#storage_struct = parallel
{
supported_exfat = yes
}
dev_mount sdcard /storage/extSdCard auto /devices/platform/msm_sdcc.1/mmc_host/mmc1/
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sda /storage/UsbDriveA auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdb /storage/UsbDriveB auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdc /storage/UsbDriveC auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdd /storage/UsbDriveD auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sde /storage/UsbDriveE auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdf /storage/UsbDriveF auto /devices/platform/msm_hsusb_host/usb
#EOF
Could some one please help me on doing this or advice a proper way that will effectivly work for my phone
Thanks in advance

Categories

Resources