#!/bin/sh # Initializing Power Management ACPI first, then APM. # APM won't load if ACPI is initialized anyway. echo "Initializing Power Management" modprobe ac > /dev/null 2>&1 modprobe battery > /dev/null 2>&1 modprobe button > /dev/null 2>&1 modprobe fan > /dev/null 2>&1 modprobe processor > /dev/null 2>&1 modprobe thermal > /dev/null 2>&1 modprobe apm > /dev/null 2>&1