From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3E4AE139085 for ; Sun, 8 Jan 2017 00:40:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CC3FE0C7D; Sun, 8 Jan 2017 00:40:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58B73E0C7C for ; Sun, 8 Jan 2017 00:40:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 10389341026 for ; Sun, 8 Jan 2017 00:40:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78F172639 for ; Sun, 8 Jan 2017 00:40:28 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1483833187.1e94aa54a07defecaf20729914726318aa4f42c4.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: doc/, / X-VCS-Repository: proj/genkernel X-VCS-Files: doc/genkernel.8.txt gen_cmdline.sh X-VCS-Directories: doc/ / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 1e94aa54a07defecaf20729914726318aa4f42c4 X-VCS-Branch: master Date: Sun, 8 Jan 2017 00:40:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 30b646b4-5c5d-401d-bedb-329160501c88 X-Archives-Hash: d159174f9142850fd2cabd878ad780b1 commit: 1e94aa54a07defecaf20729914726318aa4f42c4 Author: Robin H. Johnson gentoo org> AuthorDate: Sat Jan 7 23:53:07 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sat Jan 7 23:53:07 2017 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1e94aa54 Document --ssh option. Signed-off-by: Robin H. Johnson gentoo.org> doc/genkernel.8.txt | 3 +++ gen_cmdline.sh | 2 ++ 2 files changed, 5 insertions(+) diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt index dafa25b..944d596 100644 --- a/doc/genkernel.8.txt +++ b/doc/genkernel.8.txt @@ -303,6 +303,9 @@ INITIALIZATION *--*[*no-*]*iscsi*:: Includes or excludes iSCSI support +*--*[*no-*]*ssh*:: + Includes or excludes SSH (dropbear) support for remote LUKS keys. + *--bootloader*=*grub*:: Add new kernel to GRUB configuration. diff --git a/gen_cmdline.sh b/gen_cmdline.sh index 64ea1ab..b4df913 100755 --- a/gen_cmdline.sh +++ b/gen_cmdline.sh @@ -114,6 +114,8 @@ longusage() { echo " --no-multipath Exclude Multipath support" echo " --iscsi Include iSCSI support" echo " --no-iscsi Exclude iSCSI support" + echo " --ssh Include SSH (dropbear) support" + echo " --no-ssh Exclude SSH (dropbear) support" echo " --bootloader=grub Add new kernel to GRUB configuration" echo " --linuxrc= Specifies a user created linuxrc" echo " --busybox-config= Specifies a user created busybox config"