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

17 lines
289 B
Bash

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_all_modules '/platform/'
}
help ()
{
cat<<HELPEOF
This hook adds the necessary modules for a platform device.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: