Lines Matching +full:- +full:d2
4 # SPDX-License-Identifier: BSD-2-Clause
39 mount | grep -q "on $mntpoint " && umount $mntpoint
40 [ -c /dev/md$mdstart ] && mdconfig -d -u $mdstart
41 mdconfig -a -t swap -s 1g -u $mdstart
45 mount -u -o ro $mntpoint
47 d1=`stat -f '%a %m %c' $f1`
50 d2=`stat -f '%a %m %c' $f1`
51 if [ "$d1" != "$d2" ]; then
52 echo "ufs: Access time was updated. $d1 != $d2"
55 mount -u -o rw $mntpoint
58 mdconfig -d -u $mdstart
61 mount -o size=100m -t tmpfs null $mntpoint || exit 1
63 mount -u -o ro $mntpoint
65 d1=`stat -f '%a %m %c' $f1`
68 d2=`stat -f '%a %m %c' $f1`
69 if [ "$d1" != "$d2" ]; then
70 echo "tmpfs: Access time was updated. $d1 != $d2"
73 mount -u -o rw $mntpoint
78 [ -c /dev/md$mdstart ] && mdconfig -d -u $mdstart
79 mdconfig -a -t swap -s 1g -u $mdstart
80 gpart create -s bsd md$mdstart > /dev/null
81 gpart add -t freebsd-ufs md$mdstart > /dev/null
84 mount -t msdosfs /dev/md${mdstart}$part $mntpoint || exit 1
87 mount -u -o ro $mntpoint
89 d1=`stat -f '%a %m %c' $f1`
92 d2=`stat -f '%a %m %c' $f1`
93 if [ "$d1" != "$d2" ]; then
94 echo "msdosfs: Access time was updated. $d1 != $d2"
97 mount -u -o rw $mntpoint
100 mdconfig -d -u $mdstart