summaryrefslogtreecommitdiffstats
path: root/install/dsdt
blob: b38c66c944b559cdfde1b361d1df55ce30d4814d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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: