diff options
author | Shawn Alty <shawn.alty@gmail.com> | 2011-10-10 20:48:59 -0500 |
---|---|---|
committer | Shawn Alty <shawn.alty@gmail.com> | 2011-10-14 19:16:19 -0500 |
commit | c9b9f44792280bdb7533966003c87f70127b468e (patch) | |
tree | 47ac884056fe6858920f85011f04838201cd4f86 | |
parent | dab0d6cf5c7537e841bf5ce115d8435f9c9c7d4f (diff) | |
download | device_samsung_aries-common-c9b9f44792280bdb7533966003c87f70127b468e.zip device_samsung_aries-common-c9b9f44792280bdb7533966003c87f70127b468e.tar.gz device_samsung_aries-common-c9b9f44792280bdb7533966003c87f70127b468e.tar.bz2 |
Conform and fix SGS SD card stuff inside Android OS (1/4)
Mount internal storage to emmc (like other devices), but the expected behavior for
new users is for it to be mounted to /sdcard (thus eliminating the requirement of
an external SD card). This will be fixed in the device build files by defaulting
to having the switch enabled.
Patchset 2: This is to squash a "bug-but-not-a-bug" issue. Technically the partition
mapping was wrong, but it snuck through and worked anyway as they both happen to "match"
under default circumstances. Best to make sure and get it right though.
Change-Id: I38b87cd8d20f66b7ee76ddc240ab1c98954a7c25
-rw-r--r-- | vold.fstab | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ ###################### # internal sdcard -dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.0/mmc_host/mmc0 +dev_mount emmc /mnt/emmc 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
\ No newline at end of file +dev_mount sdcard /mnt/sdcard auto /devices/platform/s3c-sdhci.2/mmc_host/mmc2 |