archboot/usr/lib/initcpio/install/arch_bootmessage_x86_64
2018-06-22 09:12:23 +02:00

17 lines
407 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
### generate boot.msg
[ -s "${APPENDBOOTMESSAGE}" ] && cat ${APPENDBOOTMESSAGE} >> ${BOOTMESSAGE}
[ -s "${APPENDOPTIONSBOOTMESSAGE}" ] && cat ${APPENDOPTIONSBOOTMESSAGE} >> ${OPTIONSBOOTMESSAGE}
}
help ()
{
cat <<HELPEOF
This hook sets up dynamically the boot message, depending on
your system.
HELPEOF
}