#!/bin/sh

set -e

KVERS=2.6.24-24-lpia

if [ -x /sbin/depmod ]; then
	/sbin/depmod -a "${KVERS}" || true
         rmmod ath_hal || true
         modprobe ath_pci || true
fi

#DEBHELPER#

exit 0  