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 4639A138334 for ; Mon, 25 Nov 2019 13:53:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 960AAE08C9; Mon, 25 Nov 2019 13:53:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A053E090F for ; Mon, 25 Nov 2019 13:53:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4598434D385 for ; Mon, 25 Nov 2019 13:53:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF5DC26C for ; Mon, 25 Nov 2019 13:53:06 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1574689110.0b8bec3f106b5d49ac6aeefc426b16b1dda31d91.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 0b8bec3f106b5d49ac6aeefc426b16b1dda31d91 X-VCS-Branch: master Date: Mon, 25 Nov 2019 13:53:06 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 19648906-a544-4029-97ba-ee01add237f4 X-Archives-Hash: 00298612fadb48f19bbe92ac83cfa26a commit: 0b8bec3f106b5d49ac6aeefc426b16b1dda31d91 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Nov 25 13:38:30 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Nov 25 13:38:30 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=0b8bec3f linuxrc: Set USE_CRYPTSETUP=1 when crypt_{root,swap} is used This will allow us to check only one variable later. Signed-off-by: Thomas Deutschmann gentoo.org> defaults/linuxrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/defaults/linuxrc b/defaults/linuxrc index 63df802..5d79a7c 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -244,9 +244,11 @@ do # Crypto crypt_root=*) CRYPT_ROOT=${x#*=} + USE_CRYPTSETUP=1 ;; crypt_swap=*) CRYPT_SWAP=${x#*=} + USE_CRYPTSETUP=1 ;; root_key=*) CRYPT_ROOT_KEY=${x#*=}