archboot/usr/lib/initcpio/install/arch_bootmessage_allinone
2012-05-26 11:50:43 +02:00

17 lines
No EOL
398 B
Bash

#!/bin/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
}