de321175f2
configs/boot/micro_memlat.rcS: Update these scripts so they work (not sure why they broke) configs/boot/micro_tlblat.rcS: Update this script to use a different test. --HG-- extra : convert_revision : 6e8692540a9fac6ae8f2d9975c70d4135354b849
13 lines
217 B
Bash
13 lines
217 B
Bash
#!/bin/sh
|
|
#
|
|
# /etc/init.d/rcS
|
|
#
|
|
|
|
echo -n "Mounting empty disk..."
|
|
mkdir /tmp-space
|
|
/bin/mount /dev/hdb1 /tmp-space
|
|
chmod a+rwx /tmp-space
|
|
echo "done."
|
|
|
|
/bin/bonnie++ -u 99 -s 700 -r 0 -n 0 -f -F -d /tmp-space
|
|
m5 exit
|