# Set value for root=

ROOT="`awk '$2 == "/" { print $1 }' < /etc/fstab`"
if [ X$ROOT = X ]; then
  echo "Could not find a value for / in /etc/fstab. Exiting"
  exit 1
fi
echo "u_root=$ROOT"

