#!/bin/sh
# Check to see if Xsigo drivers are installed

if [ $(find $srcmods -name "xscore.ko"|wc -l) -eq 0 ]; then
    exit 1
fi

exit 0

