archboot/usr/lib/initcpio/install/archboot_platform

18 lines
300 B
Text
Raw Normal View History

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