how do u go about undoing a sd card ext? i dont want to use apps2sd anymore nor buy a new sd card but it seems as tho im stuck with it.. i might be missing something but idk.
feefeeboomboom said:
how do u go about undoing a sd card ext? i dont want to use apps2sd anymore nor buy a new sd card but it seems as tho im stuck with it.. i might be missing something but idk.
Click to expand...
Click to collapse
format your sdcard from recovery
why is there an option to turn off apps2sd? i though if it was on the rom, your stuck with it?
fixxxer2008 said:
why is there an option to turn off apps2sd? i though if it was on the rom, your stuck with it?
Click to expand...
Click to collapse
no if its in the rom all that means is that if your card is formatted for apps to sd then it works automatically if you just format your card back to fat32 then it just works normal.
hu..
Well my phone wont reformat my sd card and even when i do it with the comp to fat32 it only formats the unpartioned side.. idk if my phone is working right..
Damit fixxxer posting useless $&*#&# on a thread again....
If you're already using AppsToSD, all your downloaded apps are on the SD card. If you just format it you'll lose everything.
I'm not sure if there's any straightforward way to undo it without starting from scratch.
Code:
boot normally
adb shell
#rm /data/app
#rm /data/app-private
#mkdir /data/app
#mkdir /data/app-private
#cp -a /system/sd/app /data
#cp -a /system/sd/app-private /data
#reboot
# is not something you type, it indicates that you are root and it's your prompt. If your prompt is $ then you need to su
You have now disabled apps2sd. You can reformat your sd card if you like, but it's not necessary... the ext partition is relatively small and you really shouldn't miss the space.
Related
[Q] Running games from SDCard instead of internal memory?
recently installed few games and run out of memory quickly, but my SDcard still got about 7GB left, how can I run games from my sdcard, I tried move most of games, but it allowed only move like 3 games from 10 :/
You moved 3 games to the external sd card and they worked ? ,are you sure you didnt move them to the internal sd card ?
bolinao said:
You moved 3 games to the external sd card and they worked ? ,are you sure you didnt move them to the internal sd card ?
Click to expand...
Click to collapse
Nope, moved to SD card (Dungeon Defenders, Medieval Castle Defense, Sacred Odyssey, TegraZone Games). It allow me to move back to phone aswell, but rest games I can't even move to SD card... :/
If you have a bit of Linux terminal knowledge you could try moving all the data for the games to your external sd card and create symlinks or softlinks from the old directory names on your internal storage to the new ones on your external sd card using the adb shell.
Assuming you are rooted and know how to connect to your phone's terminal using the adb shell command you'll do something like this:
mv /usr/local/myGame /sdcard/
ln -s /sdcard/myGame /usr/local/myGame
This will move the directory called myGame that's initially in the /usr/local/ directory on your internal storage to your sd card after which you have a directory called myGame on your sd card with all the data in it for the game. So the mv command basically is the same as cutting and pasting a directory on Windows, you remove it from one location and store it in another.
Then you create a link in the /usr/local/ directory that redirects all requests that go to the myGame directory on the internal storage directly to your myGame directory on the sd card. In theory it should work perfectly as the Android system should treat a symlink in the same way as a direct link.
If you get an error when you create the symlink with the ln -s command or the game doesn't work anymore you can just move back the data on the sd card and everything will be as it was: "mv /sdcard/myGame /usr/local/"
You could also try some of the apps2sd apps in the Market.
What is the actual memory size reserved for apps?
Thanks.
What is the actual memory size reserved for apps?
Thanks.
Click to expand...
Click to collapse
5.7GB SD + 1GB internal can't use the external SD at the moment for apps
Sent from my LG-P920 using Tapatalk
bioweb said:
If you have a bit of Linux terminal knowledge you could try moving all the data for the games to your external sd card and create symlinks or softlinks from the old directory names on your internal storage to the new ones on your external sd card using the adb shell.
Assuming you are rooted and know how to connect to your phone's terminal using the adb shell command you'll do something like this:
mv /usr/local/myGame /sdcard/
ln -s /sdcard/myGame /usr/local/myGame
This will move the directory called myGame that's initially in the /usr/local/ directory on your internal storage to your sd card after which you have a directory called myGame on your sd card with all the data in it for the game. So the mv command basically is the same as cutting and pasting a directory on Windows, you remove it from one location and store it in another.
Then you create a link in the /usr/local/ directory that redirects all requests that go to the myGame directory on the internal storage directly to your myGame directory on the sd card. In theory it should work perfectly as the Android system should treat a symlink in the same way as a direct link.
If you get an error when you create the symlink with the ln -s command or the game doesn't work anymore you can just move back the data on the sd card and everything will be as it was: "mv /sdcard/myGame /usr/local/"
You could also try some of the apps2sd apps in the Market.
Click to expand...
Click to collapse
I've done some tests yesterday and this method unfortunately doesn't work. The mv command doesn't allow moving files or directories from the internal storage to the external sd card. Instead, I tried using Root Explorer. As a test I moved all the datafiles for Angry Birds to my SD Card and using the ln -s command I created a symlink.
The symlink itself worked perfectly, I could get a complete directory listing of what used to be on the internal storage with the adb terminal. However, Angry Birds unfortunately didn't start but just force closed. I guess Android has some built in security.
It's strange though as this exact method was used in the earlier lagfixes for the Galaxy S to copy systemfiles to the sd card and symlinking them.
bioweb said:
I've done some tests yesterday and this method unfortunately doesn't work. The mv command doesn't allow moving files or directories from the internal storage to the external sd card. Instead, I tried using Root Explorer. As a test I moved all the datafiles for Angry Birds to my SD Card and using the ln -s command I created a symlink.
The symlink itself worked perfectly, I could get a complete directory listing of what used to be on the internal storage with the adb terminal. However, Angry Birds unfortunately didn't start but just force closed. I guess Android has some built in security.
It's strange though as this exact method was used in the earlier lagfixes for the Galaxy S to copy systemfiles to the sd card and symlinking them.
Click to expand...
Click to collapse
damn, must somewhere find method what could work :/
Use Root Explorer open /system/etc/vold.fstab
you will find two line like:
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
Edit into the following:
dev_mount extsdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
dev_mount sdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
Then save and reboot, the SDCard and internal memory will swap.
wan0eve said:
Then save and reboot, the SDCard and internal memory will swap.
Click to expand...
Click to collapse
Do you mean the external sd card and the internal sd card will swap.
bolinao said:
Do you mean the external sd card and the internal sd card will swap.
Click to expand...
Click to collapse
Yes, it is.
wan0eve said:
Use Root Explorer open /system/etc/vold.fstab
you will find two line like:
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
Edit into the following:
dev_mount extsdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
dev_mount sdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
Then save and reboot, the SDCard and internal memory will swap.
Click to expand...
Click to collapse
will try it out.
might need to download again all game files, becouse it will take years to copy from external to sd
Thats an cool idea. Any tests yet ?
wan0eve said:
Use Root Explorer open /system/etc/vold.fstab
you will find two line like:
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
Edit into the following:
dev_mount extsdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
dev_mount sdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
Then save and reboot, the SDCard and internal memory will swap.
Click to expand...
Click to collapse
wan0eve, how ****ing sure were you about this before telling others about this? I almost got my phone stuck with this and felt so stupid ever
http://android.modaco.com/topic/340279-get-gameloft-games-to-external-sd/
this will make all gameloft game data onto external sd...
wc326 said:
http://android.modaco.com/topic/340279-get-gameloft-games-to-external-sd/
this will make all gameloft game data onto external sd...
Click to expand...
Click to collapse
WOW,it works ..thanks for this
bolinao said:
WOW,it works ..thanks for this
Click to expand...
Click to collapse
OP should put this link on his first post so everyone will knows
wan0eve said:
Use Root Explorer open /system/etc/vold.fstab
you will find two line like:
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
Edit into the following:
dev_mount extsdcard /mnt/sdcard auto /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
dev_mount sdcard /mnt/sdcard/_ExternalSD auto /devices/platform/mmci-omap-hs.1/mmc_host/mmc0
Then save and reboot, the SDCard and internal memory will swap.
Click to expand...
Click to collapse
Can anyone confirm this working?
I been trying to find a way to do this for a while now and I don't want to brick my phone.
iDutchy said:
Can anyone confirm this working?
I been trying to find a way to do this for a while now and I don't want to brick my phone.
Click to expand...
Click to collapse
Here is an easier way:
http://forum.xda-developers.com/showthread.php?t=1091455
bolinao said:
Here is an easier way:
http://forum.xda-developers.com/showthread.php?t=1091455
Click to expand...
Click to collapse
That is only for gameloft right?
how about my other apps I just want my 16GB card to be the main SD card to copy apps and games to. that's why I wanted to know if this fix works to swap both SD cards.
if it does do I need to format before I do it etc will I brick my phone what are the dangers etc?
hi all
my 9003 telling me the internal and external SD unavailable as you can see on the attached photo
i have 8gb card it's working fine on my pc and other nokia phone .
when i try the parted command from adb shell i can access the external card on /dev/block/mmcblk0p1
but i can't see the internal memory on /dev/block/mmcblk1p1 as the entry shows on the /etc/vold.conf .
can't mounted or formatted from UI or recovery mode
am running XXKPH with CF-ROOT-XXKPH-21.08.2011
also tried different firmware with re-partition but no luck
i think it's internal hardware problem
please advice
thanks
problem solved for now , i can get some storage space from my external mmc
as the phone can't detect the internal mmcblk1p1 and no storage space was available internal nor external seems it's h/w issue.
1st i used parted to make partition on my external mmc from the adb shell
2nd edit the vold.fstab
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
mbr_policy = overwrite
}
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
#end line ## keep this line
3rd edit the /etc/fstab
/dev/block/stl11 /cache rfs rw
/dev/block/mmcblk0p2 /data rfs rw
/dev/block/stl10 /datadata rfs rw
/dev/block/stl9 /system rfs rw
/dev/block/mmcblk0p1 /sdcard auto rw
now i have 4gb from my external mmc mapped to the internal , i can install apps and use my camera again
you are my saviour. i got same prob as you. now its working after follow your step.
PLease guide me as I am new to it that how could I Reterive my Internal Memory.
look at the top post!!
Hello ahmedjust
i want to know how to 2nd edit the vold.fstab plaese help me? aed when i give # internal sdcard
says internal : not found how to solved this problem?
i solved it by changing the phone
I have this problem too, I think Internal hardisk has problem .
Same Problem, I guess
Hi all,
I think i have the same issue..my SD card is not being detected , its sayin "Mount SD Card" and that field is disabled probably because it doesnt know that its there even though i have an external 16 GB card inserted..
fyi here are the specs :
model : GT-I9003
Android version : 2.3.7
Internal Memory : 1.87GB
SD Card : Unavailable
Baseband : I9003XXKPQ
ROM : MIUI 2.3.30
Here is the thing, i have flashed my phone about a 100 times, with various ROMS including stock XXKPE,XXKPQ (latest) and still no success
Also, the funny thing is, only 12 gb of my 16 gb external sd is usable so im guessing the 4 gb is being used internally by the phone for the default 2 + 2 gb of samsung galaxy s
on reboot to recovery, when i go to --> install from sd card, it says E: cant mount \sdcard
whereas when i go to --> install from internal sd card, it shows me all the files,folders on my external sd card
Another thing ive seen is when trying to clear cache it says :
E:format_volume: rfs format failed on /dev/block/mmcblk0p3
-------------
Now all said and done, i just wanted some sort of idea whether i should go ahead with this solution because im very sure its the same problem..ive inserted my external sd card on other samsung galaxy s and it works fine..and ive tried inserting other external sd cards onto my phone but it doesnt get mounted..
Thanks!
Same Problem
I think I have the same problem! Will report back if the solution works! It seemed so bazaar, I didn't think anyone else had it.
ahmedjust said:
hi all
my 9003 telling me the internal and external SD unavailable as you can see on the attached photo
i have 8gb card it's working fine on my pc and other nokia phone .
when i try the parted command from adb shell i can access the external card on /dev/block/mmcblk0p1
but i can't see the internal memory on /dev/block/mmcblk1p1 as the entry shows on the /etc/vold.conf .
can't mounted or formatted from UI or recovery mode
am running XXKPH with CF-ROOT-XXKPH-21.08.2011
also tried different firmware with re-partition but no luck
i think it's internal hardware problem
please advice
thanks
problem solved for now , i can get some storage space from my external mmc
as the phone can't detect the internal mmcblk1p1 and no storage space was available internal nor external seems it's h/w issue.
1st i used parted to make partition on my external mmc from the adb shell
2nd edit the vold.fstab
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
mbr_policy = overwrite
}
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
#end line ## keep this line
3rd edit the /etc/fstab
/dev/block/stl11 /cache rfs rw
/dev/block/mmcblk0p2 /data rfs rw
/dev/block/stl10 /datadata rfs rw
/dev/block/stl9 /system rfs rw
/dev/block/mmcblk0p1 /sdcard auto rw
now i have 4gb from my external mmc mapped to the internal , i can install apps and use my camera again
Click to expand...
Click to collapse
ihave a same problem but in step 2 edit the vold.fstab
i cant because there is no way to replace vold.fstab root explorer dosent run and adb cant get sdcard for replace vol.fstab anyone can help?
kghai3 said:
Hi all,
I think i have the same issue..my SD card is not being detected , its sayin "Mount SD Card" and that field is disabled probably because it doesnt know that its there even though i have an external 16 GB card inserted..
fyi here are the specs :
model : GT-I9003
Android version : 2.3.7
Internal Memory : 1.87GB
SD Card : Unavailable
Baseband : I9003XXKPQ
ROM : MIUI 2.3.30
Here is the thing, i have flashed my phone about a 100 times, with various ROMS including stock XXKPE,XXKPQ (latest) and still no success
Also, the funny thing is, only 12 gb of my 16 gb external sd is usable so im guessing the 4 gb is being used internally by the phone for the default 2 + 2 gb of samsung galaxy s
on reboot to recovery, when i go to --> install from sd card, it says E: cant mount \sdcard
whereas when i go to --> install from internal sd card, it shows me all the files,folders on my external sd card
Another thing ive seen is when trying to clear cache it says :
E:format_volume: rfs format failed on /dev/block/mmcblk0p3
-------------
Now all said and done, i just wanted some sort of idea whether i should go ahead with this solution because im very sure its the same problem..ive inserted my external sd card on other samsung galaxy s and it works fine..and ive tried inserting other external sd cards onto my phone but it doesnt get mounted..
Thanks!
Click to expand...
Click to collapse
its the same problem mate... see my post here... now my problem solved using above method.. the only thing is, every time the device restart or on from battery drained, need to configure everything back including APN for data connectivity..
---------- Post added at 10:31 PM ---------- Previous post was at 10:19 PM ----------
kasra_eminem said:
ihave a same problem but in step 2 edit the vold.fstab
i cant because there is no way to replace vold.fstab root explorer dosent run and adb cant get sdcard for replace vol.fstab anyone can help?
Click to expand...
Click to collapse
install any root kernel into your phone 1st.. then put it into recovery mode.. connect to pc and run android sdk... type command "adb push c:\(location of vold.fstab file in your pc) \system\etc\" and enter.. type without the " and ().. this way you will push the file from your pc into your phone and it will replace the previous one..
example : adb push c:\users\anplugged\desktop\vold.fstab /system/etc/
have a try mate.. good luck...
thanks to you.
ahmedjust said:
hi all
my 9003 telling me the internal and external SD unavailable as you can see on the attached photo
i have 8gb card it's working fine on my pc and other nokia phone .
when i try the parted command from adb shell i can access the external card on /dev/block/mmcblk0p1
but i can't see the internal memory on /dev/block/mmcblk1p1 as the entry shows on the /etc/vold.conf .
can't mounted or formatted from UI or recovery mode
am running XXKPH with CF-ROOT-XXKPH-21.08.2011
also tried different firmware with re-partition but no luck
i think it's internal hardware problem
please advice
thanks
problem solved for now , i can get some storage space from my external mmc
as the phone can't detect the internal mmcblk1p1 and no storage space was available internal nor external seems it's h/w issue.
1st i used parted to make partition on my external mmc from the adb shell
2nd edit the vold.fstab
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
mbr_policy = overwrite
}
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc1
#end line ## keep this line
3rd edit the /etc/fstab
/dev/block/stl11 /cache rfs rw
/dev/block/mmcblk0p2 /data rfs rw
/dev/block/stl10 /datadata rfs rw
/dev/block/stl9 /system rfs rw
/dev/block/mmcblk0p1 /sdcard auto rw
now i have 4gb from my external mmc mapped to the internal , i can install apps and use my camera again
Click to expand...
Click to collapse
thanks mate... This solved my issue... Just one more thing can use more than 4gb from the external sd?
redcarullo said:
thanks mate... This solved my issue... Just one more thing can use more than 4gb from the external sd?
Click to expand...
Click to collapse
can I answer your question on behalf of ahmedjust....? yes you can mate as long as you have sufficient space on your external SD...
anplugged said:
can I answer your question on behalf of ahmedjust....? yes you can mate as long as you have sufficient space on your external SD...
Click to expand...
Click to collapse
how? i need guidance please
redcarullo said:
how? i need guidance please
Click to expand...
Click to collapse
1st of all, of course you'll need a larger capacity of SD.. i.e 16gb..
to increase the external memory space, edit the 1st partition of fat32 format.. in the picture posted by ahmedjust, he created :
start end
32.8kb 4702mb <--increase the end figure to get more space on external..
But the following 3 partition must have +/- space as seen on the pic..
You just need to do the math to divide the space...
Good Luck..
Help
hi,
i was flashing poseidon rom on xxkpq when suddenly my internal sd card and external sd card just disappeared ...
could this help me solve my problem .
Thanks
plz help me i am not able to partition the external sd.
My problem: modified my phone as described in #1.
Phone boots fine, but whenever I install an app it just reboots. Any ideas?
Did you know? Editing /etc/fstab is pointless. Every time you reboot, it is replaced by a default one.
oz42 said:
Did you know? Editing /etc/fstab is pointless. Every time you reboot, it is replaced by a default one.
Click to expand...
Click to collapse
That is not true. I am a user of modified fstab file and it has been very useful to me because it saved my phone from being totally useless. I used to have "pseudo resets" errors, "sd card unexpectedly removed" errors, "force closes", but now my phone is 99% OK (1% = my internal SD is destroyed already :laugh: ). But no more errors encountered after using modified fstab, very stable for 3 weeks and counting.
now sure what happened but today i can't write to my SD card. I noticed when one of my backup apps tried to do the backup and it failed because it wasn't able to write to the card. I'm running liquid smooth 3.2 and it was working fine that i noticed. i can read and open things on the card but i can't delete, move, or write on the card. any ideas?
You may want to try to unmount and remount your sdcard. You may also want to reboot just to get things to fall back into place. Do you have any apps that automatically mount or unmount the SD card?
stedrocklp said:
You may want to try to unmount and remount your sdcard. You may also want to reboot just to get things to fall back into place. Do you have any apps that automatically mount or unmount the SD card?
Click to expand...
Click to collapse
tried the restart and even reinstalled the rom with no luck... when i try to unmount sd card it just sits there saying unmounting but nothing happens
tried to just connect to comp for usb storage and seems i can't even do that anymore. maybe the problem is the mounting and unmounting of the sd card now i can't even change to another rom to see if its a rom problem.
Hi guys,
My SD card got corrupted before flashing a rom, so I'm a bit stuck (I can access the CWM menu, the kernel is fine).
So I formatted the card to FAT32 (tried other formats) but when I try and flash an update.zip from it I get
E:Can't mount /sdcard/
I also can't mount the sd card from the CWM menu.
So I'm thinking, are there some files missing from the SD card that CWM/android need to interact with it? I can imagine these files were wiped when I did a format. Like superuser files or something? You know also, those hidden files beginning with '.'
I've tried all the usual methods like formatting using SDFormatter and stuff - still, CWM can't see it (my computer can if USB is mounted). Am I right in thinking I need some kind of system files on the SD card?
Any help?
Thanks in advance
Card could be bad, try another one. If it works, trash the 1st one.
-- Sent from my TouchPad using Communities
Format it in phone if it can read it should help or try another 1 as post mortem saiď
Sent from my crap using xda app
check ur card using windows for bad sector, or format ur sd using minitool software with default setting chosen, if thats doesnt 'cure' da disease, juz claim new one, isnt sd card hav unlimited year warranty?
notoxa said:
Hi guys,
My SD card got corrupted before flashing a rom, so I'm a bit stuck (I can access the CWM menu, the kernel is fine).
So I formatted the card to FAT32 (tried other formats) but when I try and flash an update.zip from it I get
E:Can't mount /sdcard/
I also can't mount the sd card from the CWM menu.
So I'm thinking, are there some files missing from the SD card that CWM/android need to interact with it? I can imagine these files were wiped when I did a format. Like superuser files or something? You know also, those hidden files beginning with '.'
I've tried all the usual methods like formatting using SDFormatter and stuff - still, CWM can't see it (my computer can if USB is mounted). Am I right in thinking I need some kind of system files on the SD card?
Any help?
Thanks in advance
Click to expand...
Click to collapse
I also think that the SD card has the problem, I had also the same case before, but when I try my cousins memory card the SD card is now mounted in CWM..
for fixing you can try this commands on cmd
chkdsk /x /f (your sd card name)
and then press enter
WARNING:after fixing some bad sectors you will noticed that your some apps or things were zero bite on sd card.
INFO:"(your sd card name)" is means your card name for example like h: s: k: etc.and like this command
chkdsk /x /f h:
Hi everyone ,seeing how my tablet slows down every time i install an app i bought myself and sd card class 10,16gb.
I just installed the freshest cm10 build now i want to set it up so that the apps automaticly install on the sdcard ,can u guys help me out )?
Tried the foldermount ,but it`s very confusing and uncofortable.
THX in advance
Bump ? PLEASE I REALLY NEED YOUR HELP
running speed of the apps in internal storage is always faster than the one in external sd card. 4.5G internal storage usually enough for app installation. If internal sd card is not enough, maybe you should swap internal sd card and external sd card. It's better.
impliu said:
running speed of the apps in internal storage is always faster than the one in external sd card. 4.5G internal storage usually enough for app installation. If internal sd card is not enough, maybe you should swap internal sd card and external sd card. It's better.
Click to expand...
Click to collapse
Can you please tell how to swap? The vold.fstab method is no longer working.
Wiyosa said:
Can you please tell how to swap? The vold.fstab method is no longer working.
Click to expand...
Click to collapse
I don't use CM with my 3113. For my Nook HD running either CM and JB 4.2.2 or JB 4.3 there is a script. If you look at the OP in this thread,
http://forum.xda-developers.com/showthread.php?t=2062613
"LeapinLar wrote:
4. Swapping "sdcard" and "ext_sdcard" read this
"I have two zips attached below, one to install the swap feature and one to remove the feature. Just flash the one you want and on the next boot it will become effective.
I also now have a version for the official CM10.1/CM10.2 on emmc for the HD+ and HD."
Maybe this will point you in a direction to get the answer. I lack the knowledge and skills to experiment.
#!/system/bin/sh
sleep 10
mount -o remount,rw /
mount -t vfat -o umask=0000 /dev/block/vold/179:25 /mnt/sdcard
sleep 30
mount -o bind /data/media/0 /mnt/ext_sdcard
chmod 777 /mnt/ext_sdcard
exit
You'll have to watch the name and locations, ext_sdcard might be extSdCard for the Galaxy Tab 2.7. You should consider having a .zip to flash from recovery to overwrite the experimental script. You might try ScriptManager to test running the script.