diff options
author | Tobias Powalowski <tpowa@archlinux.org> | 2006-05-04 14:47:16 +0200 |
---|---|---|
committer | Tobias Powalowski <tpowa@archlinux.org> | 2006-05-04 14:47:16 +0200 |
commit | 30d61eedc925c91d12055b01d4b1ff4559c876b9 (patch) | |
tree | 65627572954e312f892a01c06b68f819abeb33ba /install/dsdt | |
parent | 7f3e83c8323e358f7da4788dd18f05f5546b021e (diff) | |
download | mkinitcpio-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/dsdt')
-rw-r--r-- | install/dsdt | 19 |
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 +} |