commit: 1fbcd207b69f959095fc141837ff75a822c3c459
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 8 00:40:02 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 8 00:40:02 2017 +0000
URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1fbcd207
gen_cmdline: missing actual commandline option for SSH.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
gen_cmdline.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index b4df913..7e8853b 100755
--- a/gen_cmdline.sh
+++ b/gen_cmdline.sh
@@ -404,6 +404,10 @@ parse_cmdline() {
CMD_ISCSI=`parse_optbool "$*"`
print_info 2 "CMD_ISCSI: ${CMD_ISCSI}"
;;
+ --ssh|--no-ssh)
+ CMD_SSH=`parse_optbool "$*"`
+ print_info 2 "CMD_SSH: ${CMD_SSH}"
+ ;;
--loglevel=*)
CMD_LOGLEVEL="${*#*=}"
LOGLEVEL="${CMD_LOGLEVEL}"