summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorTobias Powalowski <tpowa@archlinux.org>2006-05-04 14:47:16 +0200
committerTobias Powalowski <tpowa@archlinux.org>2006-05-04 14:47:16 +0200
commit30d61eedc925c91d12055b01d4b1ff4559c876b9 (patch)
tree65627572954e312f892a01c06b68f819abeb33ba /install
parent7f3e83c8323e358f7da4788dd18f05f5546b021e (diff)
downloadmkinitcpio-30d61eedc925c91d12055b01d4b1ff4559c876b9.tar.gz
mkinitcpio-30d61eedc925c91d12055b01d4b1ff4559c876b9.tar.xz
'added custom dsdt support'
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@64 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install')
-rw-r--r--install/dsdt19
1 files changed, 19 insertions, 0 deletions
diff --git a/install/dsdt b/install/dsdt
new file mode 100644
index 0000000..99a4a2e
--- /dev/null
+++ b/install/dsdt
@@ -0,0 +1,19 @@
+# vim: set ft=sh:
+
+install ()
+{
+ MODULES=""
+ BINARIES=""
+ FILES=""
+ SCRIPT=""
+ 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
+}