archboot/usr/lib/initcpio/install/archboot_bootmessage_x86_64
Tobias Powalowski 10e701b9b3 add bootmessage
Signed-off-by: Tobias Powalowski <tpowa@archlinux.org>
2021-09-10 20:02:03 +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
}