diff options
Diffstat (limited to 'install/dsdt')
-rw-r--r-- | install/dsdt | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/install/dsdt b/install/dsdt index f1345d0..b38c66c 100644 --- a/install/dsdt +++ b/install/dsdt @@ -1,19 +1,14 @@ -# vim: set ft=sh: +#!/bin/bash -build() -{ - MODULES="" - BINARIES="" - FILES="" - SCRIPT="" +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 +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: |