#!/bin/sh

. /etc/rc.common

case "$1" in
  start)

    ConsoleMessage "Starting Spencer Boot: remounting root fs noatime"
    mount_hfs -o noatime /dev/disk0s2 /

    ;;
esac

exit 0
