[syslinux-iso] fix regression in kernel_cmdline helper function

Fix FS#24203.

Regression introduced at commit b171f8f11f

Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
This commit is contained in:
Gerardo Exequiel Pozzi 2011-05-10 20:43:53 -03:00
parent 91b63fcd05
commit 90981fa285

View File

@ -1,10 +1,10 @@
# vim: set ft=sh:
# kernel_cmdline <param>
# kernel_cmdline <param> <default>
# 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
# 1 if it was not. Also prints value passed as <default>
#
kernel_cmdline ()
{
@ -15,6 +15,6 @@ kernel_cmdline ()
*) continue ;;
esac
done
[ -n "${2}" ] && echo "${2}"
return 1
}