archboot/usr/lib/initcpio/install/archboot_dmidecode

18 lines
332 B
Bash

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