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:
Text File  |  2006-02-14  |  303 b   |  29 lines

  1. #!/bin/sh
  2.  
  3. PREREQ=""
  4.  
  5. prereqs()
  6. {
  7.     echo "$PREREQ"
  8. }
  9.  
  10. case $1 in
  11. # get pre-requisites
  12. prereqs)
  13.     prereqs
  14.     exit 0
  15.     ;;
  16. esac
  17.  
  18. case "$DPKG_ARCH" in
  19. # load the right modules
  20. powerpc|ppc64)
  21.     modprobe -Qb i2c-keywest
  22.     modprobe -Qb therm_pm72
  23.     ;;
  24. i386|amd64|ia64)
  25.     modprobe -Qb fan
  26.     modprobe -Qb thermal
  27.     ;;
  28. esac
  29.