From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 58B427803E5 for ; Tue, 5 Mar 2024 13:01:43 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=cUp+l0TxPrGDETsoMzQguFVhIv09hVeIjmDi4xEYR6M=; c=relaxed/simple; d=groups.io; h=MIME-Version:References:In-Reply-To:From:Date:Message-ID:Subject:To:Cc:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type; s=20140610; t=1709643702; v=1; b=hVD6rqQajjYtxs+R3BbSQBB7ZK2PtwQPI1YGkQhSLPdxbQGGIlloLdPcz1107iJOhk58hH5m Dwep8Rmfoa/aXhSEWJ9c98JTuY8W1W0LyU3mBaltjHpPj04NzdoTYpgX2Kc9Zs8BRIiYp16L28r sNU00e2c3BWLYjslR0zjglUs= X-Received: by 127.0.0.2 with SMTP id 0CvGYY7687511xa78rUe6cFn; Tue, 05 Mar 2024 05:01:42 -0800 X-Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web11.22370.1709643701149090977 for ; Tue, 05 Mar 2024 05:01:41 -0800 X-Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 88190614DF for ; Tue, 5 Mar 2024 13:01:40 +0000 (UTC) X-Received: by smtp.kernel.org (Postfix) with ESMTPSA id 33A3BC43399 for ; Tue, 5 Mar 2024 13:01:40 +0000 (UTC) X-Received: by mail-lj1-f171.google.com with SMTP id 38308e7fff4ca-2d27184197cso77757161fa.1 for ; Tue, 05 Mar 2024 05:01:40 -0800 (PST) X-Gm-Message-State: sAtfPu3uinxvHG3wC2VZZKL6x7686176AA= X-Google-Smtp-Source: AGHT+IHBhs12PUovnEvUVlH84kEJdiWwODEioGojF2A+4I9tU0TUaCCNGgypMJAUgQz+Fw/C73s5o2iVD3d9Y597zPE= X-Received: by 2002:a05:6512:2108:b0:513:26e7:6c0d with SMTP id q8-20020a056512210800b0051326e76c0dmr1098226lfr.67.1709643698347; Tue, 05 Mar 2024 05:01:38 -0800 (PST) MIME-Version: 1.0 References: <20240305120126.70259-1-lersek@redhat.com> <20240305120126.70259-2-lersek@redhat.com> In-Reply-To: <20240305120126.70259-2-lersek@redhat.com> From: "Ard Biesheuvel" Date: Tue, 5 Mar 2024 14:01:26 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [edk2-platforms PATCH v2 1/4] BeagleBoardPkg: auto-generate SEC ProcessLibraryConstructorList() decl To: Laszlo Ersek Cc: edk2-devel-groups-io , Leif Lindholm Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,ardb@kernel.org List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset="UTF-8" X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=hVD6rqQa; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=kernel.org (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io On Tue, 5 Mar 2024 at 13:01, Laszlo Ersek wrote: > > Rely on AutoGen for declaring ProcessLibraryConstructorList(). > > Build-tested with: > > build -a ARM -b DEBUG \ > -m Platform/BeagleBoard/BeagleBoardPkg/PrePi/PeiUniCore.inf \ > -p Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc -t GCC5 > > Cc: Ard Biesheuvel > Cc: Leif Lindholm > Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=990 > Signed-off-by: Laszlo Ersek Reviewed-by: Ard Biesheuvel > --- > Platform/BeagleBoard/BeagleBoardPkg/PrePi/PeiUniCore.inf | 2 +- > Platform/BeagleBoard/BeagleBoardPkg/PrePi/PrePi.h | 6 ------ > 2 files changed, 1 insertion(+), 7 deletions(-) > > diff --git a/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PeiUniCore.inf b/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PeiUniCore.inf > index 414091957cb2..03d8f4daab48 100644 > --- a/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PeiUniCore.inf > +++ b/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PeiUniCore.inf > @@ -9,7 +9,7 @@ > #**/ > > [Defines] > - INF_VERSION = 0x0001001A > + INF_VERSION = 1.30 > BASE_NAME = BeagleBoardPrePiUniCore > FILE_GUID = 8a5dc3de-fe31-4ad9-9c93-dd73626932e7 > MODULE_TYPE = SEC > diff --git a/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PrePi.h b/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PrePi.h > index b64dd764a435..a2932f0f5116 100644 > --- a/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PrePi.h > +++ b/Platform/BeagleBoard/BeagleBoardPkg/PrePi/PrePi.h > @@ -81,10 +81,4 @@ ArchInitialize ( > VOID > ); > > -VOID > -EFIAPI > -ProcessLibraryConstructorList ( > - VOID > - ); > - > #endif /* _PREPI_H_ */ > -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#116387): https://edk2.groups.io/g/devel/message/116387 Mute This Topic: https://groups.io/mt/104742757/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-