Reply
Thread Tools
Posts: 542 | Thanked: 117 times | Joined on Sep 2008 @ 52 N, 6 E
#1
Finally I got it !

I installed the ext3 FS on /media/mmc1 following the procedure to reformat the internal card but using mkfs.ext3 rather than mkdosfs.
This tool can be obtained by
Code:
apt-get install e2fsprogs
Then /usr/sbin/mmc-mount should be changed to (thanks to @maacruz)
Code:
#!/bin/sh

if [ "$1" == "/dev/mmcblk0p1" ]; then 
  mount -t ext3 -o noatime,utf8,nodiratime "$1" "$2" 
else 
  mount -t vfat -o rw,noauto,nodev,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0033 "$1" "$2" >> /home/user/mount
fi
and from now on large libraries / apps can be put on mmc2 and symlinked from the usual internal memoey.
__________________
Nokia N810 FW version 5.2008.43-7
iPad 2 (iOS 4.3.2) Macbook Pro (10.6.6)
Nokia 5800 phone FW 62.0.0125
 

The Following User Says Thank You to skatebiker For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 17:56.