#!/bin/sh
#
# Check if debug mode was requested in the boot line
#
for i in `/sbin/getbootargs` ; do
  [ "$i" = "debug"   -o   "$i" = "trace" ] && exit 0
done

exit 1
