summaryrefslogtreecommitdiff
path: root/scripts/init-premount/thermal
blob: d59af8a9e4b7b07b8145ea5faa27e6c160d7775b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

PREREQ=""

prereqs()
{
	echo "$PREREQ"
}

case $1 in
# get pre-requisites
prereqs)
	prereqs
	exit 0
	;;
esac

case "$DPKG_ARCH" in
# load the right modules
powerpc|ppc64)
	modprobe -q i2c-keywest
	modprobe -q therm_pm72
	;;
i386|amd64|ia64)
	modprobe -q fan
	modprobe -q thermal
	;;
esac