You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the init script for ORx's mount job looks like this:
mount_start() {
if ! ismounted /mnt/sdcard; then
/bin/mkdir -p /mnt/sdcard
/bin/mount /dev/mmcblk0p1 /mnt/sdcard
fi
....
}
fsck.fat should be performed on /dev/mmcblk0p1 before it is mounted. The mount command should use the errors=continue option so that the card is always mounted, even if it has errors.
The text was updated successfully, but these errors were encountered:
Currently, the init script for ORx's mount job looks like this:
fsck.fat
should be performed on/dev/mmcblk0p1
before it is mounted. The mount command should use theerrors=continue
option so that the card is always mounted, even if it has errors.The text was updated successfully, but these errors were encountered: