From: "Bob Feng" <bob.c.feng@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
"aladyshev22@gmail.com" <aladyshev22@gmail.com>
Cc: Jake Garver <jake@nvidia.com>,
"Gao, Liming" <gaoliming@byosoft.com.cn>,
"Chen, Christine" <yuwei.chen@intel.com>
Subject: Re: [edk2-devel] [PATCH] Fix cyclic dependency error on OptionROM build
Date: Tue, 17 Jan 2023 09:22:30 +0000 [thread overview]
Message-ID: <PH7PR11MB5863DD69100AAE11B981E447C9C69@PH7PR11MB5863.namprd11.prod.outlook.com> (raw)
In-Reply-To: <CACSj6VWc2M4++zgD6uSCkL2ZAXKhdbyPujpe4L3DJndzEx8s8w@mail.gmail.com>
Hi Konstantin,
EDK2 has not moved to PR for code review yet. Please still send patches to the mailing list.
Package maintainers open PR for triggering CI and merging the patch.
Refer to: https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Development-Process
Thanks,
Bob
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Konstantin Aladyshev
Sent: Tuesday, January 17, 2023 4:24 PM
To: Feng, Bob C <bob.c.feng@intel.com>
Cc: devel@edk2.groups.io; Jake Garver <jake@nvidia.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Chen, Christine <yuwei.chen@intel.com>
Subject: Re: [edk2-devel] [PATCH] Fix cyclic dependency error on OptionROM build
Thanks, Bob!
Sorry, somehow I've missed it.
Has EDK2 moved to the GitHub PR system instead of a mailing list for patches?
Do I need to open PR for my subsequent patches, or just send them to the mailing list like before?
Best regards,
Konstatin Aladyshev
On Tue, Jan 17, 2023 at 8:17 AM Feng, Bob C <bob.c.feng@intel.com> wrote:
>
> Konstantin,
>
>
>
> The patch missed “Signed-off-by:”, I help you add it and open a PR https://github.com/tianocore/edk2/pull/3909 for merge.
>
>
>
> Thanks,
>
> Bob
>
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Bob
> Feng
> Sent: Tuesday, January 17, 2023 1:05 PM
> To: Jake Garver <jake@nvidia.com>; Konstantin Aladyshev
> <aladyshev22@gmail.com>; devel@edk2.groups.io
> Cc: Gao, Liming <gaoliming@byosoft.com.cn>; Chen, Christine
> <yuwei.chen@intel.com>
> Subject: Re: [edk2-devel] [PATCH] Fix cyclic dependency error on
> OptionROM build
>
>
>
> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
>
>
>
> From: Jake Garver <jake@nvidia.com>
> Sent: Wednesday, December 14, 2022 2:48 AM
> To: Konstantin Aladyshev <aladyshev22@gmail.com>; devel@edk2.groups.io
> Cc: Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming
> <gaoliming@byosoft.com.cn>; Chen, Christine <yuwei.chen@intel.com>
> Subject: Re: [PATCH] Fix cyclic dependency error on OptionROM build
>
>
>
> Thanks, Konstantin,
>
>
>
> I approve this version.
>
>
>
> Thanks,
>
> Jake
>
> ________________________________
>
> From: Konstantin Aladyshev <aladyshev22@gmail.com>
> Sent: Tuesday, December 13, 2022 11:22 AM
> To: devel@edk2.groups.io <devel@edk2.groups.io>
> Cc: bob.c.feng@intel.com <bob.c.feng@intel.com>;
> gaoliming@byosoft.com.cn <gaoliming@byosoft.com.cn>;
> yuwei.chen@intel.com <yuwei.chen@intel.com>; Jake Garver
> <jake@nvidia.com>; Konstantin Aladyshev <aladyshev22@gmail.com>
> Subject: [PATCH] Fix cyclic dependency error on OptionROM build
>
>
>
> External email: Use caution opening links or attachments
>
>
> EDKII build system supports OptionROM generation if particular PCI_*
> defines are present in the module INF file:
> ```
> [Defines]
> ...
> PCI_VENDOR_ID = <...>
> PCI_DEVICE_ID = <...>
> PCI_CLASS_CODE = <...>
> PCI_REVISION = <...>
> ```
> Although after the commit d372ab585a2cdc5348af5f701c56c631235fe698
> ("BaseTools/Conf: Fix Dynamic-Library-File template") it is no longer
> possible.
> The build system fails with the error:
> ```
> Cyclic dependency detected while generating rule for
> "<...>/DEBUG/<...>.efi" file ``` Remove
> "$(DEBUG_DIR)(+)$(MODULE_NAME).efi" from the 'dll' output files to fix
> the cyclic dependency.
> ---
> BaseTools/Conf/build_rule.template | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/BaseTools/Conf/build_rule.template
> b/BaseTools/Conf/build_rule.template
> index af4819de92..21ccd864fa 100755
> --- a/BaseTools/Conf/build_rule.template
> +++ b/BaseTools/Conf/build_rule.template
> @@ -342,7 +342,6 @@
>
>
> <OutputFile>
>
> $(OUTPUT_DIR)(+)$(MODULE_NAME).efi
>
> - $(DEBUG_DIR)(+)$(MODULE_NAME).efi
>
> $(OUTPUT_DIR)(+)$(MODULE_NAME).map
>
>
>
> <Command.MSFT, Command.INTEL, Command.CLANGPDB>
>
> --
> 2.34.1
>
>
prev parent reply other threads:[~2023-01-17 9:22 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-12 13:09 [PATCH] Revert "BaseTools/Conf: Fix Dynamic-Library-File template" Konstantin Aladyshev
2022-12-12 15:35 ` Jake Garver
2022-12-12 16:07 ` Konstantin Aladyshev
2022-12-13 15:42 ` Jake Garver
2022-12-13 16:24 ` Konstantin Aladyshev
2022-12-13 16:22 ` [PATCH] Fix cyclic dependency error on OptionROM build Konstantin Aladyshev
2022-12-13 18:47 ` Jake Garver
2023-01-15 10:53 ` Konstantin Aladyshev
2023-01-17 5:04 ` Bob Feng
[not found] ` <173B00341150B4F6.23170@groups.io>
2023-01-17 5:17 ` [edk2-devel] " Bob Feng
2023-01-17 8:23 ` Konstantin Aladyshev
2023-01-17 9:22 ` Bob Feng [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=PH7PR11MB5863DD69100AAE11B981E447C9C69@PH7PR11MB5863.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox