From 21d5fe085bcea9e2015105ba4f5097e9e63edf7d Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Fri, 11 Oct 2019 21:29:39 -0500 Subject: [PATCH] Mount drives with error=continue --- rootfs/standard/usr/bin/mount_drive.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/standard/usr/bin/mount_drive.tcl b/rootfs/standard/usr/bin/mount_drive.tcl index bfabbaa6..f6cd332a 100755 --- a/rootfs/standard/usr/bin/mount_drive.tcl +++ b/rootfs/standard/usr/bin/mount_drive.tcl @@ -74,7 +74,7 @@ proc createMyNodeFsOnBlockDevice {blockDevice} { puts "Formatting new partition ${blockDevice}1" runCommand mkfs.ext4 -F -L myNode /dev/${blockDevice}1 - runCommand mount /dev/${blockDevice}1 /mnt/hdd + runCommand mount /dev/${blockDevice}1 /mnt/hdd -o errors=continue runCommand date >/mnt/hdd/.mynode runCommand echo /dev/${blockDevice}1 > /tmp/.mynode_drive }] {