]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/boot.d/04-initpowermanagement
Ein NTFS-Update fuer den Heiner :D
[people/teissler/ipfire-2.x.git] / src / boot.d / 04-initpowermanagement
CommitLineData
f8ae001e
MT
1#!/bin/sh
2# Initializing Power Management ACPI first, then APM.
3# APM won't load if ACPI is initialized anyway.
4echo "Initializing Power Management"
5modprobe ac > /dev/null 2>&1
6modprobe battery > /dev/null 2>&1
7modprobe button > /dev/null 2>&1
8modprobe fan > /dev/null 2>&1
9modprobe processor > /dev/null 2>&1
10modprobe thermal > /dev/null 2>&1
11modprobe apm > /dev/null 2>&1