diff options
author | Bill Nottingham <notting@redhat.com> | 2002-08-22 21:10:52 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-08-22 21:10:52 +0000 |
commit | 7072b1506147f341b8a6e4b6e59bc0a7e20bfade (patch) | |
tree | 343af792959b0c4e9c99b38dcc3d64f7c9da8f45 /rc.d/rc.sysinit | |
parent | 6ddf1d4f021b1d230512c157dc5550a715a20be7 (diff) | |
download | initscripts-7072b1506147f341b8a6e4b6e59bc0a7e20bfade.tar initscripts-7072b1506147f341b8a6e4b6e59bc0a7e20bfade.tar.gz initscripts-7072b1506147f341b8a6e4b6e59bc0a7e20bfade.tar.bz2 initscripts-7072b1506147f341b8a6e4b6e59bc0a7e20bfade.tar.xz initscripts-7072b1506147f341b8a6e4b6e59bc0a7e20bfade.zip |
remove disabling of DMA; it can cause problems
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 5180845a..909be0e4 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -653,13 +653,6 @@ if grep -q "ide-scsi" /proc/cmdline ; then modprobe ide-scsi >/dev/null 2>&1 fi -# Turn off DMA on CD-ROMs. It more often than not causes problems. -if [ -x /sbin/hdparm -a -e /proc/ide ]; then - for N in `grep -v ide-disk /proc/ide/*/*/driver 2>/dev/null | awk -F / '{ print $5 }'`; do - hdparm -q -d0 /dev/$N >/dev/null 2>&1 - done -fi - # Turn on harddisk optimization # There is only one file /etc/sysconfig/harddisks for all disks # after installing the hdparm-RPM. If you need different hdparm parameters |