Lines Matching +full:emc +full:- +full:cfg +full:- +full:2
4 # Copyright (c) 2016 Dell EMC
12 # 2. Redistributions in binary form must reproduce the above copyright
31 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
32 [ -z "`which mkisofs`" ] && echo "mkisofs not found" && exit 0
34 . ../default.cfg
39 rm -rf $D $I
40 mkdir -p $D
41 cp -r ../../stress2 $D 2>/dev/null
43 mkisofs -o $I -r $D > /dev/null 2>&1
45 mount | grep -q /dev/md$mdstart && umount -f /dev/md${mdstart}
46 [ -c /dev/md$mdstart ] && mdconfig -d -u $mdstart
47 mdconfig -a -t vnode -f $I -u $mdstart || exit 1
48 mount -t cd9660 /dev/md$mdstart $mntpoint || exit 1
51 mdconfig -s 1g -u $m2
54 mount -o union /dev/md${m2} $mntpoint || exit 1
58 (cd $mntpoint/stress2; ./run.sh marcus.cfg) > /dev/null
61 mdconfig -d -u $m2
63 mdconfig -d -u $mdstart
64 rm -rf $D $I