archboot/usr/lib/initcpio/install/archboot_acpi

17 lines
283 B
Text
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
2007-05-13 19:50:46 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-05-13 19:50:46 +02:00
{
2023-02-17 21:37:58 +01:00
add_all_modules '/acpi/'
2007-05-13 19:50:46 +02:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes the acpi subsystem on an archboot image.
2007-05-13 19:50:46 +02:00
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: