summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2008-03-16 10:55:51 +0100
committerThomas Bächler <thomas@archlinux.org>2008-03-16 10:55:51 +0100
commitc98f860009e05b4d3f10b914ade3a5fad1df6b24 (patch)
treec4f8062d5f52cd41d94bf08c38d2fc2d95c130eb /functions
parent1f8eed5b46629c3e38207349b505251e3c0cde1c (diff)
downloadmkinitcpio-c98f860009e05b4d3f10b914ade3a5fad1df6b24.tar.gz
mkinitcpio-c98f860009e05b4d3f10b914ade3a5fad1df6b24.tar.xz
Fix various coding style issues
Diffstat (limited to 'functions')
-rw-r--r--functions22
1 files changed, 11 insertions, 11 deletions
diff --git a/functions b/functions
index e124303..ce8a544 100644
--- a/functions
+++ b/functions
@@ -3,7 +3,7 @@ auto_modules ()
{
aliases=$(find /sys/devices/ -name modalias -exec cat {} \;)
mods=$(/sbin/modprobe --set-version ${KERNELVERSION} --show-depends -a \
- $aliases 2>/dev/null | sed 's|insmod \(.*\)|\1|' | grep ${@} | sort -u)
+ ${aliases} 2>/dev/null | sed 's|insmod \(.*\)|\1|' | grep $@ | sort -u)
echo "${mods}"
[ -z "${mods}" ] && return 1
@@ -12,7 +12,7 @@ auto_modules ()
all_modules ()
{
- mods=$(find ${MODULEDIR} -name *.ko 2>/dev/null | grep ${@} | sort -u)
+ mods=$(find ${MODULEDIR} -name *.ko 2>/dev/null | grep $@ | sort -u)
echo "${mods}"
[ -z "${mods}" ] && return 1
@@ -22,7 +22,7 @@ all_modules ()
checked_modules ()
{
if [ -e "${MODULE_FILE}" ]; then
- for mod in $(all_modules ${@}); do
+ for mod in $(all_modules $@); do
if grep "^$(basename ${mod%%\.ko})$" "${MODULE_FILE}" >/dev/null 2>&1; then
echo ${mod}
fi
@@ -33,9 +33,9 @@ checked_modules ()
fi
}
-msg () { [ "${QUIET}" = "n" ] && echo ${@}; }
-err () { echo "ERROR: ${@}" >&2; }
-die () { echo "FATAL: ${@}" >&2; cleanup; exit 1; }
+msg () { [ "${QUIET}" = "n" ] && echo $}; }
+err () { echo "ERROR: $@" >&2; }
+die () { echo "FATAL: $@" >&2; cleanup; exit 1; }
add_full_dir ()
{
@@ -155,7 +155,7 @@ add_module ()
HAS_MODULES="y"
add_file "${path}" && found=1
done
- if [ $found -eq 0 ]; then
+ if [ ${found} -eq 0 ]; then
err "module '$fil' not found"
fi
}
@@ -170,7 +170,7 @@ add_binary ()
dest=""
if [ $# -eq 2 ]; then
- dest=$2
+ dest=${2}
fi
if [ ! -f "${bin}" ]; then
@@ -209,19 +209,19 @@ add_binary ()
parse_hook ()
{
local mod bin fil
- for mod in $MODULES; do
+ for mod in ${MODULES}; do
if [ -n "${mod}" ]; then
add_module "${mod}"
fi
done
- for bin in $BINARIES; do
+ for bin in ${BINARIES}; do
if [ -n "${bin}" ]; then
add_binary "${bin}"
fi
done
- for fil in $FILES; do
+ for fil in ${FILES}; do
if [ -n "${fil}" ]; then
add_file "${fil}"
fi