home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2006 November (DVD)
/
PCWELT_11_2006.ISO
/
casper
/
filesystem.squashfs
/
usr
/
share
/
initramfs-tools
/
scripts
/
init-premount
/
thermal
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-02-14
|
303 b
|
29 lines
#!/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 -Qb i2c-keywest
modprobe -Qb therm_pm72
;;
i386|amd64|ia64)
modprobe -Qb fan
modprobe -Qb thermal
;;
esac