diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-12-06 10:13:52 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-12-06 10:13:52 +0100 |
commit | 02607774d17c89fbe9b77e8bbb379518c502a6cd (patch) | |
tree | 1c8d5ecc387a205eedbb9d81a37264a14a09cf48 /install/base | |
parent | e8f8478b128b142262b6f0e3d24b6f9b766f81d3 (diff) | |
download | mkinitcpio-02607774d17c89fbe9b77e8bbb379518c502a6cd.tar.gz mkinitcpio-02607774d17c89fbe9b77e8bbb379518c502a6cd.tar.xz |
Trying to address piix issue:
- added -m to print a message before passing control to kinit
- added earlymodules= to preload modules
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@187 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install/base')
-rw-r--r-- | install/base | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install/base b/install/base index 0bb45db..78fbc1d 100644 --- a/install/base +++ b/install/base @@ -20,6 +20,10 @@ install () add_file "/lib/initcpio/init" "/init" add_file "${CONFIG}" "/config" + if [ "x${MESSAGE}" != "x" ]; then + echo -e "${MESSAGE}" > ${MESSAGEFILE} + add_file "${MESSAGEFILE}" "/message" + fi SCRIPT="" } |