From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 1D370CFB45B for ; Tue, 8 Oct 2024 09:22:20 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.812922.1225661 (Exim 4.92) (envelope-from ) id 1sy6Px-00013g-0g; Tue, 08 Oct 2024 09:22:09 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 812922.1225661; Tue, 08 Oct 2024 09:22:08 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sy6Pw-00013Z-Tg; Tue, 08 Oct 2024 09:22:08 +0000 Received: by outflank-mailman (input) for mailman id 812922; Tue, 08 Oct 2024 09:22:08 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sy6Pw-00013T-Kz for xen-devel@lists.xenproject.org; Tue, 08 Oct 2024 09:22:08 +0000 Received: from sonata.ens-lyon.org (domu-toccata.ens-lyon.fr [140.77.166.138]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id c94eea49-8556-11ef-a0bc-8be0dac302b0; Tue, 08 Oct 2024 11:22:07 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id 226CCA0522; Tue, 8 Oct 2024 11:22:06 +0200 (CEST) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b36NvorYlX62; Tue, 8 Oct 2024 11:22:06 +0200 (CEST) Received: from begin (nat-inria-interne-52-gw-01-bso.bordeaux.inria.fr [194.199.1.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id C9945A051D; Tue, 8 Oct 2024 11:22:05 +0200 (CEST) Received: from samy by begin with local (Exim 4.98) (envelope-from ) id 1sy6Pt-0000000ByQo-2P21; Tue, 08 Oct 2024 11:22:05 +0200 X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: c94eea49-8556-11ef-a0bc-8be0dac302b0 Date: Tue, 8 Oct 2024 11:22:05 +0200 From: Samuel Thibault To: =?utf-8?B?SsO8cmdlbiBHcm/Dnw==?= Cc: xen-devel@lists.xenproject.org, Daniel De Graaf , Quan Xu Subject: Re: [PATCH 2/4] stubdom: explcitly add libc and lwip Mini-OS config options Message-ID: Mail-Followup-To: Samuel Thibault , =?utf-8?B?SsO8cmdlbiBHcm/Dnw==?= , xen-devel@lists.xenproject.org, Daniel De Graaf , Quan Xu References: <20241005151548.29184-1-jgross@suse.com> <20241005151548.29184-3-jgross@suse.com> <5b4233fc-ea12-4b19-bff9-dfb6c6c43832@suse.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5b4233fc-ea12-4b19-bff9-dfb6c6c43832@suse.com> Organization: I am not organized Jürgen Groß, le mar. 08 oct. 2024 11:18:26 +0200, a ecrit: > On 07.10.24 23:50, Samuel Thibault wrote: > > > diff --git a/stubdom/grub/minios.cfg b/stubdom/grub/minios.cfg > > > index 8df49092cd..5145b357e0 100644 > > > --- a/stubdom/grub/minios.cfg > > > +++ b/stubdom/grub/minios.cfg > > > @@ -1,3 +1,4 @@ > > > -CONFIG_START_NETWORK=n > > > +CONFIG_LIBC=y > > > +CONFIG_LWIP=n > > > CONFIG_SPARSE_BSS=n > > > CONFIG_TPMFRONT=y > > > > Grub does use LWIP, and just does not want mini-os to start network > > automatically, grub does so by itself from minios_probe. > > Are you sure? LWIPDIR isn't being set for building grub-stubdom. How > does this work? Ah, sorry, grub implements tcp/ip itself indeed, so it's only netfront that stubdom-grub needs. Samuel