Make cmdline_param work and conform to rc.d layout

- Rename cmdline_param to kernel_cmdline
- Move to /etc/rc.d/functions.d where it belongs
This commit is contained in:
Simo Leone 2011-03-02 04:43:31 -08:00 committed by Gerardo Exequiel Pozzi
parent d812cc131e
commit b171f8f11f
3 changed files with 20 additions and 13 deletions

View File

@ -1,12 +0,0 @@
# vim: set ft=sh:
cmdline_param ()
{
for param in ${CMDLINE}; do
case "${param}" in
$1=*) echo "${param##*=}"; return ;;
*) continue ;;
esac
done
[ -n "${2}" ] && echo "${2}"
}

View File

@ -1,7 +1,6 @@
# vim: set ft=sh:
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/archiso/functions
scan_network ()

View File

@ -0,0 +1,20 @@
# vim: set ft=sh:
# kernel_cmdline <param>
# Looks for a parameter on the kernel's boot-time command line.
#
# returns: 0 if param was found. Also prints its value if it was a K=V param.
# 1 if it was not
#
kernel_cmdline ()
{
for param in $(/bin/cat /proc/cmdline); do
case "${param}" in
$1=*) echo "${param##*=}"; return 0 ;;
$1) return 0 ;;
*) continue ;;
esac
done
return 1
}