blob: e249682c74df67fe6c01823260a4d24db021a770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdparm/files/hdparm-init,v 1.2 2003/02/14 23:25:49 vapier Exp $
depend() {
need localmount
}
start() {
ebegin "Enabling DMA on IDE drives"
/sbin/hdparm -d1 /dev/ide/hd/*u? &> /dev/null
eend
}
|