summaryrefslogtreecommitdiff
blob: 32fc970a651f4ab834258b7f175a1caf0de6cfcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#RCUPDATE:boot:25:This line is required for script management
#This will enumerate the ISA PnP Boards in the system, and configure them if
#it finds the file $CONFFILE

source /etc/rc.d/config/functions

CONFFILE=/etc/isapnp.conf

if [ -e $CONFFILE ]; then
	if [ -e /sbin/isapnp ]
	then
		ebegin "Configuring ISA PnP devices"
		/sbin/isapnp $CONFFILE 1>&2
		eend $? "Error configuring ISA PnP"
	fi
fi