diff options
author | Bill Nottingham <notting@redhat.com> | 2001-02-20 17:08:47 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-02-20 17:08:47 +0000 |
commit | 8ec94af1056cc65fe4cec54199521da5dbd0a522 (patch) | |
tree | 6ffd869c32dbfb92c557136f79a681652924d7b6 | |
parent | 027c0ade7d12a633d11a3867858f06bd96faa7c6 (diff) | |
download | initscripts-8ec94af1056cc65fe4cec54199521da5dbd0a522.tar initscripts-8ec94af1056cc65fe4cec54199521da5dbd0a522.tar.gz initscripts-8ec94af1056cc65fe4cec54199521da5dbd0a522.tar.bz2 initscripts-8ec94af1056cc65fe4cec54199521da5dbd0a522.tar.xz initscripts-8ec94af1056cc65fe4cec54199521da5dbd0a522.zip |
don't load agpgart automatically; X should handle this
-rwxr-xr-x | rc.d/rc.sysinit | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 912db007..113bba34 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -607,11 +607,6 @@ if grep -q "ide-scsi" /proc/cmdline ; then modprobe ide-scsi >/dev/null 2>&1 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_^-$__'` KERNEL_RELEASE=`uname -r | sed 's|smp\|enterprise||g'` |