I have problem in internal memory , is there way to use external memory instead (SD Card)
the problem is that i cannot save anything or delete anything , i delete everything and after that i found that everything is still available , i use the recovery wipe , i format the interned SD via PC but the same problem , everything i do anything for the system , change language setting or take image nothing been saved , i try to change the ROM but the same problem !!! Help please
Help Please
There are a few ROM which uses external memory instead of internal
Did you search in development section?
Sent from my HTC One X using xda app-developers app
ramiab8 said:
I have problem in internal memory , is there way to use external memory instead (SD Card)
the problem is that i cannot save anything or delete anything , i delete everything and after that i found that everything is still available , i use the recovery wipe , i format the interned SD via PC but the same problem , everything i do anything for the system , change language setting or take image nothing been saved , i try to change the ROM but the same problem !!! Help please
Click to expand...
Click to collapse
I had a similar problem with my Galaxy S. I finally solved this problem by doing this following step :
Before all, phone must be rooted
1) I have installed SSHDroid
2) I connected to the phone with an SSH Client
3) check file /etc/vold.fstab, you must see that code (my android versio is 2.3) :
Code:
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
discard = disable
asec = disable
}
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount sdcard1 /mnt/sdcard/external_sd auto /devices/platform/s3c-sdhci.2/mmc_host/mmc2
4) Always in SSH client, type :
- "su" in order to be root
- "mount -o rw,remount -t rfs /dev/block/stl9 /system" for write modification
5) Make a backup of vold.fstab and modify original file by switch external and sdcard reference. In my example, modifications made this
Code:
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
discard = disable
asec = disable
}
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc2
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = enable
}
dev_mount sdcard1 /mnt/sdcard/external_sd auto /devices/platform/s3c-sdhci.0/mmc_host/mmc0
6) Save modification and type "mount -o ro,remount -t rfs /dev/block/stl9 /system" for return system to read-only
7) Terminate SSH session and reboot your phone
This steps was sucessfull for me.
I hope that can help you.
Related
In order to fix this, Activate USB Debugging Under application Settings.
Windows Fix:
Open a CMD Command Shell Window (Start + Run, or Windows Key + R)
If using the adb included with super one click, replace adb below with adb-windows (and navigate to the folder where it is contained first)
PRESS ENTER AFTER EACH LINE
Code:
adb shell
then
Code:
mount -o remount,rw -t ext3 /dev/block/mmcblk0p25 /system (press enter)
This makes the system Writable
Now exit the shell with:
Code:
exit
Next - lets create a backup of our vold.fstab, incase we wish to switch to the CyanogenMod Method.
Code:
adb pull /system/etc/vold.fstab
After the file has been downloaded, copy it to another location, for safe keeping.
Now lets open the downloaded file in notepad++ and replace the contents with what are below:
Code:
#######################
## 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
######################
## dev_mount sdcard /mnt/sdcard auto /devices/platform/tegra-sdhci.2/mmc_host/mmc1
## dev_mount emmc /mnt/emmc 9 /devices/platform/tegra-sdhci.3/mmc_host/mmc2
# int sd as sdcard
dev_mount sdcard /mnt/sdcard 9 /devices/platform/tegra-sdhci.3/mmc_host/mmc2
# ext sd as emmc
dev_mount emmc /mnt/emmc auto /devices/platform/tegra-sdhci.2/mmc_host/mmc1
# usbdisk as usbdisk
dev_mount usbdisk /mnt/usbdisk auto /devices/platform/tegra-ehci
After editting, save the file, and close it. We will now send this back to the device.
Return to our command shell window, and run the following to remove the current file:
Code:
adb shell
cd /system/etc/
rm vold.fstab
exit
Followed by the command to push our editted file back to the device:
Code:
adb push vold.fstab /system/etc/vold.fstab
After these steps, reboot your phone.
As if by magic, you should now have the mount points switched round, and will be able to use the Camera and Galleries again without having to have an SD card in the phone
This is a persistent change to the file system. Although it has not caused problems on my handset, I cannot be held responsible for anything that may occur on your handset. These changes survive a reboot, and do not require you to run any script on boot. We created the backup above in case you wish to switch them back again (more storage space for videos, faster card etc)
And then add /etc/vold.fstab to custom_backup_list.txt so the change sticks when you update CM.
I have experienced problems when pushing system files with system running. Don't know for what reason. I would recommend pushing in clockworkmod
If you do this in clockworkmod you don't need the first 3 steps. Just mount /system and it's already rw.
I followed every step above and now I can't mount my SD card...
how can I fix this?
Try again. You probably did something wrong.
My Galaxy S device is 8GB type then I have only 5.6 GB left for install application and data but it does not enough.
So I brought micro sd 32GB to hope that it will help this case but it's not because some game or application will keep data and information in /mnt/sdcard/Android/data
such as many kind of gameloft.
First I tried to use run script as following command below:
mount -o bind /mnt/emmc/data/ /mnt/sdcard/Android/data
and it does work but if you want to connect to PC you must to umount before mount with PC unless you will find some error and must reboot your phone.
My simple question is "Can we change name of emmc for micro sd to another name?"
such as /mnt/emmc to /mnt/sdcard/Android
Thank in advance.
Try this (flash by recovery):
http://dl.dropbox.com/u/63255192/AOKP/InvertedSDcards.zip
To revert in case of problems:
http://dl.dropbox.com/u/63255192/AOK...cardsMount.zip
Does it work?
I see your attachment file and it change vold.fstab
from
# internal sdcard
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0
# external sdcard
dev_mount emmc /mnt/emmc auto /devices/platform/s3c-sdhci.2/mmc_host/mmc2
to
# internal sdcard
dev_mount emmc /mnt/emmc 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0
# external sdcard
dev_mount sdcard /mnt/sdcard auto /devices/platform/s3c-sdhci.2/mmc_host/mmc2
Is this just swap internal sd and external sd?
But it's still not match my question so if i do this below can it work?
# internal sdcard
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0
# external sdcard
dev_mount emmc /mnt/sdcard/Android auto /devices/platform/s3c-sdhci.2/mmc_host/mmc2
Thanks in advance
I don't try and reply
Hi guys, i have i9000 with gingerbread stock 2.3.3 with kernel cf root, i didn't understand the internal and external storage's directory :V, /mnt/sdcard0 is internal for example
Shying said:
Hi guys, i have i9000 with gingerbread stock 2.3.3 with kernel cf root, i didn't understand the internal and external storage's directory :V, /mnt/sdcard0 is internal for example
Click to expand...
Click to collapse
And /mnt/sdcard1 is external, what you cant you understand?
limnaln said:
And /mnt/sdcard1 is external, what you cant you understand?
Click to expand...
Click to collapse
my internal sd is corrupted (http://forum.xda-developers.com/showthread.php?t=1861294&page=2) so my external sd have ext4 partition and the rom runs only for this partition but i don't have external storage now, i tryed to modify the vold.fstab but nothing :V
PS:Sorry for my bad english xD
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 [COLOR="Red"]sdcard /mnt/sdcard 1[/COLOR] /devices/platform/s3c-sdhci.0/mmc_host/mmc0
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount [COLOR="Cyan"]sdcard1 /mnt/sdcard/external_sd auto[/COLOR] /devices/platform/s3c-sdhci.2/mmc_host/mmc2
#end line ## keep this line
Modified the red line with blue line and vice versa and the second partition of external sd (FAT32) is the first internal sd, but the second internal storage doesn't exist
Shying said:
my internal sd is corrupted (http://forum.xda-developers.com/showthread.php?t=1861294&page=2) so my external sd have ext4 partition and the rom runs only for this partition but i don't have external storage now, i tryed to modify the vold.fstab but nothing :V
PS:Sorry for my bad english xD
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 [COLOR="Red"]sdcard /mnt/sdcard 1[/COLOR] /devices/platform/s3c-sdhci.0/mmc_host/mmc0
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
}
dev_mount [COLOR="Cyan"]sdcard1 /mnt/sdcard/external_sd auto[/COLOR] /devices/platform/s3c-sdhci.2/mmc_host/mmc2
#end line ## keep this line
Modified the red line with blue line and vice versa and the second partition of external sd (FAT32) is the first internal sd, but the second internal storage doesn't exist
Click to expand...
Click to collapse
I have had galaxy i9000 7-8 times in the past (because i switched occationally and sgs always fashinated me to buy)
the directory @limnaln said was the right directory but in 2-3 models, the directory for external sd card was mnt/sdcard/external_sd.
Rohitdahiya said:
I have had galaxy i9000 7-8 times in the past (because i switched occationally and sgs always fashinated me to buy)
the directory @limnaln said was the right directory but in 2-3 models, the directory for external sd card was mnt/sdcard/external_sd.
Click to expand...
Click to collapse
Yep, someplaces its sdcard1, someplaces external_sdcard.
ok guys it's work but when i use camera it's fine, but fast reboot when i want install app, tryed with root browse and whatsapp...what i have to do? tryed with 3Wipe and formatting sd but always reboot after downloading an app and during install
I think, you should change ROM to another (for example CyanogenMod) and try one more time.
jako_tako said:
I think, you should change ROM to another (for example CyanogenMod) and try one more time.
Click to expand...
Click to collapse
i can't because my internal sd is corrupted and when i tryed to install cm 10.2 it say "waiting sd mount 20s" :crying:
my sd card is /sdcard/external_sd auto....it isn't /mnt/sdcard/external_sd...and i don't know why...and this change can't find my internal sdcard any idea?
Maybe i can try this solution:
Code:
For i9000, Do the FULL wipes and factory reset first (formating the Internal SD card will greatly help, so safe all your contacts, images backups to PC or Ext SD card First) Use i9000 Rescue kit with heimdall or on linux , select files as follows...
primary boot > boot.bin
secondary boot > Sbl.bin
repartition > s1_odin_20100512.pit
factoryfs > factoryfs.rfs
cache > cache.rfs
dbdata > dbdata.rfs
param > param.lfs
modem > modem.bin
kernel > zImage
The reboot may request for "Confirm password", just enter any password about 5 times until prompted that, "this will wipe the card." Yes wipe, ..Should solve the problem
but only found hotfile's link that not working now
hey guys... im just looking can swap sd card in mini 2 ??? anyone know?? please help ...
themaskreturnz said:
hey guys... im just looking can swap sd card in mini 2 ??? anyone know?? please help ...
Click to expand...
Click to collapse
Ok, swap for which rom ?
you'll need a root explorer and root
for stock 2.3 :
open this file a text editor system/etc/vold.fstab (after copying it somewhere as a backup)
when it says #internal put sdcard1 instead of sdcard and where it says #external put sdcard where it says sdcard1 (if you make an error you wont see any sd card on your phone after reboot you'll have to edit again btw i'm not responsible for anything)
and if your sdcard is called sdcard0 and external sdcard1 same way but put these values
for cm10.1 and cm10 :
edit system/build.prop go to #usb sexion and the line that does what you want is self explaining just make its value 1
for cm9:
go to settings/storage click menu button and select usb config and check the only option you'll see it is called use internal sd i guess
hope it helped , i have never had a problem with this but backup is a good option , hope it helped
Sent from my GT-S6500D using XDA Free mobile app
MaDaLiNoSt said:
Ok, swap for which rom ?
Click to expand...
Click to collapse
stock rom mybe..
pocthird said:
you'll need a root explorer and root
for stock 2.3 :
open this file a text editor system/etc/vold.fstab (after copying it somewhere as a backup)
when it says #internal put sdcard1 instead of sdcard and where it says #external put sdcard where it says sdcard1 (if you make an error you wont see any sd card on your phone after reboot you'll have to edit again btw i'm not responsible for anything)
and if your sdcard is called sdcard0 and external sdcard1 same way but put these values
for cm10.1 and cm10 :
edit system/build.prop go to #usb sexion and the line that does what you want is self explaining just make its value 1
for cm9:
go to settings/storage click menu button and select usb config and check the only option you'll see it is called use internal sd i guess
hope it helped , i have never had a problem with this but backup is a good option , hope it helped
Sent from my GT-S6500D using XDA Free mobile app
Click to expand...
Click to collapse
can make more simple like http://forum.xda-developers.com/showthread.php?t=2690038&page=3 *this is for ace plus GT7500.. thanks
thanx button ?
and btw u realy think it is easier to download ,reboot to recovery,flash a file than writing two words ? ok
Sent from my GT-S6500D using XDA Free mobile app
pocthird said:
thanx button ?
and btw u realy think it is easier to download ,reboot to recovery,flash a file than writing two words ? ok
Sent from my GT-S6500D using XDA Free mobile app
Click to expand...
Click to collapse
no i means can in SGM2 also using same method ??? because i not understand method ur give ... btw :good::good:
paste the content of the file system/etc/vold.fstab here after reading it with a text editor like kingsoft office or send it to me and i will edit it for you
Sent from my GT-S6500D using XDA Free mobile app
pocthird said:
paste the content of the file system/etc/vold.fstab here after reading it with a text editor like kingsoft office or send it to me and i will edit it for you
Sent from my GT-S6500D using XDA Free mobile app
Click to expand...
Click to collapse
this ??
can you try to replace its content with this one ? it should work , dont forget to mount system as read and write (rw)
## 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
######################
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = enable
format_option = -r 2236
}
dev_mount sdcard1 /mnt/sdcard 23 /devices/platform/msm_sdcc.3/mmc_host/
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
format_option = -r 2236
}
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.1/mmc_host/
# otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/msm_hsusb_host.0
#end line ## keep this line
Sent from my GT-S6500D using XDA Free mobile app
pocthird said:
can you try to replace its content with this one ? it should work , dont forget to mount system as read and write (rw)
## 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
######################
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = enable
format_option = -r 2236
}
dev_mount sdcard1 /mnt/sdcard 23 /devices/platform/msm_sdcc.3/mmc_host/
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
format_option = -r 2236
}
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/msm_sdcc.1/mmc_host/
# otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/msm_hsusb_host.0
#end line ## keep this line
Sent from my GT-S6500D using XDA Free mobile app
Click to expand...
Click to collapse
after i try this sd card and usb stroge cannot mount n all above show UNAVAILABLE ... why??? n how 2 solve this??
themaskreturnz said:
after i try this sd card and usb stroge cannot mount n all above show UNAVAILABLE ... why??? n how 2 solve this??
Click to expand...
Click to collapse
sorry my mistake , here is the fully edited one (it didn't save when i quited the text editor ) :
## 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
######################
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = enable
format_option = -r 2236
}
dev_mount sdcard1 /mnt/sdcard/external_sd 23 /devices/platform/msm_sdcc.3/mmc_host/
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
format_option = -r 2236
}
dev_mount sdcard /mnt/sdcard auto /devices/platform/msm_sdcc.1/mmc_host/
# otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/msm_hsusb_host.0
#end line ## keep this line
tested and working with my gts6500d
if this is not working i'm going to tell you how to get back to normal state as i made a backup before editing
pocthird said:
sorry my mistake , here is the fully edited one (it didn't save when i quited the text editor ) :
## 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
######################
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = enable
format_option = -r 2236
}
dev_mount sdcard1 /mnt/sdcard/external_sd 23 /devices/platform/msm_sdcc.3/mmc_host/
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun1/file
asec = enable
format_option = -r 2236
}
dev_mount sdcard /mnt/sdcard auto /devices/platform/msm_sdcc.1/mmc_host/
# otg sdcard
{
ums_path = /dev/zero
asec = disable
}
usb_mount sdcard2 /mnt/sdcard/usbStorage auto /devices/platform/msm_hsusb_host.0
#end line ## keep this line
tested and working with my gts6500d
if this is not working i'm going to tell you how to get back to normal state as i made a backup before editing
Click to expand...
Click to collapse
can ur make more easy and simple instruction ...like "link" iam give upper post... ??
first replace your vold.fstab with the one in attachment , and dont forget to first rename the one in attachment from "'vold.fstab.txt" to "vold.fstab"
if it doesn't work try this app i didnt try it , but for me the way i gave is working
http://www.google.com/url?sa=t&sour...jJdhNHinDGbocABl5ZJDTJg&bvm=bv.68235269,d.d2k
Sent from my GT-S6500D using XDA Free mobile app
Guys, where is the option to enable Swap SD? there is an option in cm9 tho but not 10.1 ...
Sent from my GT-S6500 using XDA Free mobile app
TiTAN-O-One said:
Guys, where is the option to enable Swap SD? there is an option in cm9 tho but not 10.1 ...
Sent from my GT-S6500 using XDA Free mobile app
Click to expand...
Click to collapse
in 10.1 edit build.prop , you'll find it in system folder , of course you will have to use root explorer or anything that lets you edit system files , open build.prop with a text editor like kingsoft office and in the usb sexion (under the line #usb and storage or something like that ) find this line :
persist.sys.vold.switchexternal=0 ;
and make it =1
like this : persist.sys.vold.switchexternal=1
save and exit and reboot
ps: move the apps installed in internal sd to external or they will be broken
hope it helps
i have tap P1000 with damage internal memory and i do this post with this method
1-Format the external sdcard with 3 partitions all of them primery I used a 16 GB card with the follwing
Partition 1: 9 GB Fat 32
Partition 2: 5 GB ext4
Partition 3: 100MB Fat 32
2- download this file GB-Stock-Safe-v5.zip from 4shared.com/zip/HTtNUmFx/GB-Stock-Safe-v5.html?cau2=403tNull&ua=WINDOWS
3-remove 2 files hidden.rfs and movinand.mst
3- boot to recovery mode and flash the file GB-Stock-Safe-v5 after remove to files hidden.rfs and movinand.mst with odin 3 v1.85
after restart i found this error
--updating application...
E:can't open directory '/preload/app/' . (no such file or directory )
copy application failed .
cant access to 'system/csc/seb/system/'
but i continue :silly:
4- boot to recovery mode and flash Overcome_Kernel_v4.0.0 i downloaded from androidfilehost.com/?fid=9390225151984927181
and by adb edit file vold.fstab
to be :
## 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
######################
# /sys/devices/platform/usb_mass_storage/lun0/file
# sdcard mount for the P1
# internal sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = disable
discard = disable
format_option = -r 1558
}
dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc1
# externel sdcard
{
ums_path = /sys/devices/platform/usb_mass_storage/lun0/file
asec = enable
}
dev_mount sdcard /mnt/sdcard/external_sd auto /devices/platform/s3c-sdhci.2/mmc_host/mmc2 /devices/platform/s3c-sdhci.2/mmc_host/mmc1
#end line ## keep this line
and after this the tap is hang with sound say invalid data partition time is delayed 50 minute data operation restore operation so what can i do >>>>:silly:
Any update
??? any update ???
???
In your vold example, you are assuming the chip is still showing up. If that is not the case, your internal and external storage may get swapped around now and then depending on when the broken one showing up or not.
You may want to open up the tab and remove the broken chip. If not, depending on how broken it is, some chips are still showing up now and then.
Remove the chip, partition external, and you don't have to modify the rom.
Sent from my GT-N7100 using XDA Free mobile app
Thanks
priyana said:
In your vold example, you are assuming the chip is still showing up. If that is not the case, your internal and external storage may get swapped around now and then depending on when the broken one showing up or not.
You may want to open up the tab and remove the broken chip. If not, depending on how broken it is, some chips are still showing up now and then.
Remove the chip, partition external, and you don't have to modify the rom.
Sent from my GT-N7100 using XDA Free mobile app
Click to expand...
Click to collapse
Thanks Thanks Thanks Thanks
you want to remove the internal Memory so can i fix it before remove it .
I think it is broken anyway. Can't fix it.
Sent from my GT-N7100 using XDA Free mobile app