From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1XyoBy-00083n-6P for mharc-grub-devel@gnu.org; Wed, 10 Dec 2014 15:49:02 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49055) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XyoBo-00080o-Ns for grub-devel@gnu.org; Wed, 10 Dec 2014 15:48:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XyoBi-0003tD-1j for grub-devel@gnu.org; Wed, 10 Dec 2014 15:48:52 -0500 Received: from rgout01.bt.lon5.cpcloud.co.uk ([65.20.0.178]:46173) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XyoBh-0003sq-QU for grub-devel@gnu.org; Wed, 10 Dec 2014 15:48:45 -0500 X-CTCH-RefID: str=0001.0A090202.5488B1AC.001C, ss=1, re=0.001, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-Junkmail-Premium-Raw: score=27/50, refid=2.7.2:2014.12.7.160622:17:27.888, ip=86.179.2.29, rules=__MOZILLA_MSGID, __HAS_MSGID, __SANE_MSGID, __HAS_FROM, __HAS_REPLYTO, __USER_AGENT, __MOZILLA_USER_AGENT, __MIME_VERSION, __TO_MALFORMED_2, __BOUNCE_CHALLENGE_SUBJ, __BOUNCE_NDR_SUBJ_EXEMPT, __REFERENCES, __IN_REP_TO, __CT, __CT_TEXT_PLAIN, __CTE, __REPLYTO_SAMEAS_FROM_ADDY, __REPLYTO_SAMEAS_FROM_ACC, __REPLYTO_SAMEAS_FROM_DOMAIN, __ANY_URI, __FRAUD_BODY_WEBMAIL, __URI_NO_WWW, __URI_NO_PATH, __SUBJ_ALPHA_NEGATE, __FORWARDED_MSG, BODYTEXTP_SIZE_3000_LESS, BODY_SIZE_800_899, __MIME_TEXT_ONLY, RDNS_GENERIC_POOLED, __URI_NS, SXL_IP_DYNAMIC[29.2.179.86.fur], HTML_00_01, HTML_00_10, BODY_SIZE_5000_LESS, RDNS_SUSP_GENERIC, BODY_SIZE_1000_LESS, RDNS_SUSP, BODY_SIZE_2000_LESS, __FRAUD_WEBMAIL, BODY_SIZE_7000_LESS, REFERENCES X-CTCH-Spam: Unknown Received: from [192.168.1.65] (86.179.2.29) by rgout01.bt.lon5.cpcloud.co.uk (8.6.122.06) (authenticated as ashton.models@btinternet.com) id 54822EC7009BE9CF; Wed, 10 Dec 2014 20:48:43 +0000 Message-ID: <5488B1AB.6070201@zen.co.uk> Date: Wed, 10 Dec 2014 20:48:43 +0000 From: Barry Jackson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Andrei Borzenkov Subject: Re: Query about GRUB_ENABLE_CRYPTODISK References: <5486EC88.1010908@zen.co.uk> <20141209212740.4d1f3ded@opensuse.site> <54877968.8030508@zen.co.uk> <54878575.6090501@zen.co.uk> <20141210062558.15524434@opensuse.site> In-Reply-To: <20141210062558.15524434@opensuse.site> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: Windows NT kernel [generic] [fuzzy] X-Received-From: 65.20.0.178 Cc: grub-devel@gnu.org X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Dec 2014 20:48:59 -0000 On 10/12/14 03:25, Andrei Borzenkov wrote: > > Does patch below help? > > From: Andrei Borzenkov > Subject: [PATCH] do not emit cryptomount without crypto UUID > > --- > util/grub-mkconfig_lib.in | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/util/grub-mkconfig_lib.in b/util/grub-mkconfig_lib.in > index 29ef865..60b31ca 100644 > --- a/util/grub-mkconfig_lib.in > +++ b/util/grub-mkconfig_lib.in > @@ -145,7 +145,7 @@ prepare_grub_to_access_device () > done > > if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then > - for uuid in "`"${grub_probe}" --device $@ --target=cryptodisk_uuid`"; do > + for uuid in `"${grub_probe}" --device $@ --target=cryptodisk_uuid`; do > echo "cryptomount -u $uuid" > done > fi > Yes that fixes it. Thanks :)