diff --git a/board/common/overlay/etc/init.d/S01mountall b/board/common/overlay/etc/init.d/S01mountall index 3d61d07e80..bfde44d17b 100755 --- a/board/common/overlay/etc/init.d/S01mountall +++ b/board/common/overlay/etc/init.d/S01mountall @@ -4,8 +4,10 @@ test -n "$os_version" || source /etc/init.d/base mount_fs() { msg_begin "Mounting filesystems" - /bin/mount -T /etc/fstab.disk -a - /bin/mount -T /etc/fstab.extra -a + /bin/mount -T /etc/fstab.disk -a && + /bin/mount -T /etc/fstab.extra -a && + if [ -r /data/etc/fstab.user ]; then /bin/mount -T /data/etc/fstab.user -a; fi + test $? == 0 && msg_done || msg_fail }