diff options
-rw-r--r-- | functions | 2 | ||||
-rw-r--r-- | hooks/filesystems | 2 | ||||
-rw-r--r-- | init | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -33,7 +33,7 @@ checked_modules () fi } -msg () { [ "${QUIET}" = "n" ] && echo "${@}"; } +msg () { [ "${QUIET}" = "n" ] && echo ${@}; } err () { echo "ERROR: ${@}" >&2; } die () { echo "FATAL: ${@}" >&2; exit 1; } diff --git a/hooks/filesystems b/hooks/filesystems index 5ab5c6b..28c4d0e 100644 --- a/hooks/filesystems +++ b/hooks/filesystems @@ -6,7 +6,7 @@ run_hook () FSTYPE="${rootfstype}" else if [ ! -e "${root}" ]; then - msg -e "\nAttempting to create root device '${root}'" + msg "\nAttempting to create root device '${root}'" if [ "x${rootdelay}" != "x" ]; then msg -n "Waiting for devices to settle..." @@ -1,6 +1,6 @@ #!/bin/sh -msg () { [ "${quiet}" != "y" ] && echo "$@"; } +msg () { [ "${quiet}" != "y" ] && echo $@; } err () { echo "ERROR: $@"; } msg ":: Loading Initramfs" |