- Nov 8, 2011
- 3,836
- 1,394
- Thread starter
- #76
By all means, please make spending time with your family your first priority! I do construction as well and am glad that I haven't had to work out of town lately. I got this tablet to have a lower priority device that I can learn on without the learning curve being so stiff. If you can point me towards learning resources, that is at least as valuable to me as being spoonfed solutions. It is a shame that some people don't seem to realize how much time and effort it takes to accomplish this.
Thanks again.
There really is no place to tell you where to go to get info on this as I am the only dev to do this, no other dev that I know of run their tablets from sdcard in this manner. Anyway what is happening is google's vold.fstab doesn't understand a partitioned sdcard, so it changes the mount point to the last part of the partition name in this case 179_1. so mount point is now /mnt/extsd/179_1 instead of /mnt/extsd/ what we can do manually is mount sdcard directly.
mount -o noatime,utf8 -t vfat /dev/block/vold/179:1 /mnt/sdcard
you need to first have your vold.fstab changed so it mount internal sdcard as /mnt/extsd
dev_mount sdcard /mnt/extsd auto /devices/virtual/block/nandi
dev_mount extsd /mnt/sdcard auto /devices/platform/sunxi-mmc.1/mmchost /devices/platform/sunxi-mmc.0/mmc_host
what needs to be done is have the mount script ran on boot
perhaps like
#!/system/bin/sh
mount -o noatime,utf8 -t vfat /dev/block/vold/179:1 /mnt/sdcard
this will give you something to work on.
ok I think i got it flash this via cwm. http://www.mediafire.com/?6eewj27r0rj8918
after reboot what a few minutes then open terminal
adb shell
ls /sdcard/
works for me there is a few minute delay after tablet boots before sdcard is mounted the way we want.
root@android:/ # mount
rootfs / rootfs rw,relatime 0 0
tmpfs /dev tmpfs rw,nosuid,noatime,nodiratime,mode=755 0 0
devpts /dev/pts devpts rw,noatime,mode=600,ptmxmode=000 0 0
proc /proc proc rw,noatime,nodiratime 0 0
sysfs /sys sysfs rw,noatime,nodiratime 0 0
tmpfs /mnt/asec tmpfs rw,noatime,mode=755,gid=1000 0 0
tmpfs /mnt/obb tmpfs rw,noatime,mode=755,gid=1000 0 0
/dev/block/mmcblk0p3 /system ext4 rw,relatime,user_xattr,barrier=0,data=ordered 0 0
/dev/block/mmcblk0p2 /data ext4 rw,nosuid,nodev,noatime,user_xattr,barrier=0,journal_checksum,data=ordered,noauto_da_alloc 0 0
/dev/block/nandh /cache ext4 rw,nosuid,nodev,noatime,user_xattr,barrier=0,journal_checksum,data=ordered,noauto_da_alloc 0 0
/dev/block/vold/93:64 /mnt/extsd vfat rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1023,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/block/vold/179:1 /mnt/sdcard/179_1 vfat rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/block/vold/179:1 /mnt/secure/asec vfat rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
tmpfs /mnt/sdcard/179_1/.android_secure tmpfs ro,relatime,size=0k,mode=000 0 0
/dev/block//vold/179:1 /mnt/sdcard vfat rw,dirsync,noatime,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
root@android:/ #
Last edited: