diff options
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index c29e1d1f..f1521cfe 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -579,6 +579,10 @@ if [ -f /proc/scsi/scsi ] && grep -q 'Type: Sequential-Access' /proc/scsi/scsi fi fi +# Load agpgart here. This is a hack, and will probably go away soon. +if grep "driver: agpgart" /etc/sysconfig/hwconf >/dev/null 2>&1 ; then + modprobe agpgart >/dev/null 2>&1 +fi # Generate a header that defines the boot kernel. KERNEL_TYPE=`uname -r | sed 's_^[^se]*\(\|smp\|enterprise\)$_-\1_;s_^-$__'` |