blob: 9bfd323437595c9258c04e7a275fc688d84a55aa (
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
29
30
31
32
|
#!/bin/sh
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac
# Hooks for loading thermal bits into the initramfs
. /usr/share/initramfs-tools/hook-functions
case "$DPKG_ARCH" in
# copy the right modules
powerpc|ppc64)
manual_add_modules therm_pm72
manual_add_modules i2c-powermac
;;
i386|amd64|ia64)
manual_add_modules fan
manual_add_modules thermal
;;
esac
|