From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH OSSTEST v3 14/22] Debian: Do not add Debian to UEFI boot order on install Date: Wed, 24 Jun 2015 18:59:17 +0100 Message-ID: <1435168757.17598.19.camel@citrix.com> References: <1435159944.28264.295.camel@citrix.com> <1435159961-22292-14-git-send-email-ian.campbell@citrix.com> <21898.54976.504278.479364@mariner.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <21898.54976.504278.479364@mariner.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Jackson Cc: xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Wed, 2015-06-24 at 17:11 +0100, Ian Jackson wrote: > Ian Campbell writes ("[PATCH OSSTEST v3 14/22] Debian: Do not add Debian to UEFI boot order on install"): > > By default Debian inserts itself before any existing entries, > > including the PXE one, meaning we otherwise cannot remotely regroove > > the box. > > Right. > > > + if (get_host_property($ho, "firmware") eq "uefi" && > > + $ho->{Suite} =~ m/jessie/) { > > I think you mean > > + if (get_host_property($ho, "firmware") eq "uefi") > + die unless $ho->{Suite} =~ m/jessie/; > > or this will expose us to broken boxes beyond jessie. Ah yes, that's a good idea indeed. > The rest looks plausible (although a bit unpleasant). Indeed, hopefully it will be easier in Stretch...