diff options
author | Jeff Bailey <jbailey@ubuntu.com> | 2005-08-16 13:34:37 -0400 |
---|---|---|
committer | Jeff Bailey <jbailey@ubuntu.com> | 2005-08-16 13:34:37 -0400 |
commit | baab5f5fc3d6cfe4821a82e5b17f0f57bef060b0 (patch) | |
tree | 274ece2445c9c99662927bcc762071cae1700e97 /scripts/init-premount | |
parent | 618760b004d07efb11f05e57d46ed4b5adb2823c (diff) | |
download | initramfs-tools-baab5f5fc3d6cfe4821a82e5b17f0f57bef060b0.tar.gz initramfs-tools-baab5f5fc3d6cfe4821a82e5b17f0f57bef060b0.zip |
Cleanup commit, sorry for the mess
Diffstat (limited to 'scripts/init-premount')
-rw-r--r-- | scripts/init-premount/acpid | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/init-premount/acpid b/scripts/init-premount/acpid new file mode 100644 index 0000000..61d226a --- /dev/null +++ b/scripts/init-premount/acpid @@ -0,0 +1,19 @@ +#!/bin/sh + +PREREQ="" + +prereqs() +{ + echo "$PREREQ" +} + +case $1 in +# get pre-requisites +prereqs) + prereqs + exit 0 + ;; +esac + +modprobe -q fan +modprobe -q thermal |