#!/bin/sh
#
# Make sure this application only can get installed on the boot partition.
#

retval=0

if [ ! -f $1/mach_kernel ]; then
	retval=48
fi

exit $retval
