diff options
author | Thomas Bächler <thomas@archlinux.org> | 2009-06-06 22:47:53 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2009-06-06 22:47:53 +0200 |
commit | 7a4bc6aaf49eb55df3e19fb09260ac97023bc901 (patch) | |
tree | 8a878036f12c0966ac839e6815c587914d674c0d /init | |
parent | 35fea002c27f6c1124a28535e379d7edf34a127e (diff) | |
download | mkinitcpio-7a4bc6aaf49eb55df3e19fb09260ac97023bc901.tar.gz mkinitcpio-7a4bc6aaf49eb55df3e19fb09260ac97023bc901.tar.xz |
Add a new file init_functions that contains common functions used in /init and the hooks
Diffstat (limited to 'init')
-rw-r--r-- | init | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,6 @@ #!/bin/sh -msg () { [ "${quiet}" != "y" ] && echo $@; } -err () { echo "ERROR: $@"; } +. /init_functions msg ":: Loading Initramfs" |