summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-01-12 03:35:54 +0100
committerDave Reisner <dreisner@archlinux.org>2012-01-12 03:38:19 +0100
commit5e6ca510671a6869e4e57eb43b03021fb43f3399 (patch)
tree044737234217fb8b6589fd0f38f36463899bdb16
parentf375d30639e7052b35850ed31ca36827df97e582 (diff)
downloadmkinitcpio-5e6ca510671a6869e4e57eb43b03021fb43f3399.tar.gz
mkinitcpio-5e6ca510671a6869e4e57eb43b03021fb43f3399.tar.xz
dsdt: remove hook. this has been defunct for years
Refer to commit 9a9e0d68555 in the kernel where Linus removes this and says "to be revisited later". The only option (currently) is to built this into your kernel image. Suggested by FS#27906. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rw-r--r--install/dsdt14
1 files changed, 0 insertions, 14 deletions
diff --git a/install/dsdt b/install/dsdt
deleted file mode 100644
index b38c66c..0000000
--- a/install/dsdt
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-build() {
- add_file "/lib/initcpio/custom.dsdt" "DSDT.aml"
-}
-
-help() {
- cat <<HELPEOF
-This hook loads a custom acpi dsdt file during boot. Place your custom dsdt
-file for inclusion here: /lib/initcpio/custom.dsdt
-HELPEOF
-}
-
-# vim: set ft=sh ts=4 sw=4 et: