summaryrefslogtreecommitdiff
blob: a13e3be71ea65cce5620e04694ca8168251b165d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need firmware
}

start() {
	ebegin "Starting hwsetup"
	[ -e /etc/sysconfig ] || mkdir -p /etc/sysconfig
	[ -x /usr/sbin/hwsetup ] && hwsetup
	eend $?
}