archboot/usr/lib/initcpio/install/archboot_acpi
2023-02-17 21:37:58 +01:00

16 lines
283 B
Bash

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_all_modules '/acpi/'
}
help ()
{
cat<<HELPEOF
This hook includes the acpi subsystem on an archboot image.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: