diff options
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 +} |