#!/bin/sh mount -t vfat -o rw,noauto,nodev,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0033 "$1" "$2"
#!/bin/sh mount -t vfat -o rw,noauto,nodev,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0033 "$1" "$2"
if [ "$1" == "/dev/mmcblk0p1" ]; then mount -t ext3 -o noatime,nodiratime "$1" "$2" else mount -t vfat ..... fi
if [ "$(file -s $1|grep ext3)" ]; then .... fi
| The Following User Says Thank You to maacruz For This Useful Post: | ||