Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: Add cpuid_ex API to execute CPUID instructions on specific CPU

2024-05-17 Thread Jayaprakash, N
Changes looks good. Reviewed-by: Jayaprakash N Regards, JP -Original Message- From: R, Vishal Sent: Friday, May 17, 2024 12:08 PM To: devel@edk2.groups.io Cc: R, Vishal ; Rebecca Cran ; Kinney, Michael D ; Jayaprakash, N Subject: [edk2-libc Patch 1/1] edk2-libc: Add cpuid_ex API

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc:add rdmsr_ex & wrmsr_ex functions to read/write cpu specific msrs

2024-04-24 Thread Jayaprakash, N
Hi Mike, I have sent an updated patch v2 for review which uses the MP Services protocol API StarupThisAP() to read / write MSRs specific to CPU cores. Please review and do the needful. Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Thursday

[edk2-devel] [edk2-libc Patch v2 1/1] edk2-libc : add rdmsr_ex and wrmsr_ex to read/write msr from specific cpus

2024-04-24 Thread Jayaprakash, N
these registers from specific cpu cores using python scripts from UEFI shell. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../PyMod-3.6.8/Modules/edk2module.c | 258 +- .../Python/Python-3.6.8/Python368.inf | 3 + 2

[edk2-devel] [edk2-libc Patch v2 0/1] add rdmsr_ex & wrmsr_ex functions to read/write msrs from specific cpu

2024-04-24 Thread Jayaprakash, N
This patch adds 2 new functions to read and write MSRs from specific CPUs. rdmsr_ex and wrmsr_ex are the 2 new functions added into edk2module to provide the read and write of CPU specific MSRs. Jayaprakash N (1): edk2-libc : add rdmsr_ex and wrmsr_ex to read/write msr from specific cpus

Re: [edk2-devel] [edk2-libc Patch 2 1/1] ek2-libc: wrmsr function available in edk2module is not working as expected

2024-04-19 Thread Jayaprakash, N
Thanks Mike as suggested made the logic simpler. Sent the updated v3 patch for review. Regards, JP -Original Message- From: Kinney, Michael D Sent: Friday, April 19, 2024 2:35 AM To: Jayaprakash, N ; devel@edk2.groups.io Cc: Rebecca Cran ; Kinney, Michael D Subject: RE: [edk2-libc

[edk2-devel] [edk2-libc Patch v3 0/1] wrmsr function is not working as expected

2024-04-19 Thread Jayaprakash, N
The wrmsr function always writes 0s to the higher 32 bits of the msr register. This PR fixes this issue reported through the BZ4745 Jayaprakash N (1): ek2-libc: wrmsr function available in edk2module is not working as expected .../Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c

[edk2-devel] [edk2-libc Patch v3 1/1] ek2-libc: wrmsr function available in edk2module is not working as expected

2024-04-19 Thread Jayaprakash, N
is has been fixed by this commit. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppPkg/Applications/Python/Python-3.6.8

[edk2-devel] [edk2-libc Patch 2 1/1] ek2-libc: wrmsr function available in edk2module is not working as expected

2024-04-18 Thread Jayaprakash, N
is has been fixed by this commit. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AppPkg/Applications/Python/Python-3.6.8

[edk2-devel] [edk2-libc Patch 2 0/1] wrmsr function is not working as expected.

2024-04-18 Thread Jayaprakash, N
The wrmsr function always writes 0s to the higher 32 bits of the msr register. This PR fixes the this issue reported through the BZ4745. Jayaprakash N (1): ek2-libc: wrmsr function available in edk2module is not working as expected .../Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc:add rdmsr_ex & wrmsr_ex functions to read/write cpu specific msrs

2024-04-18 Thread Jayaprakash, N
Thanks Mike. I shall make necessary changes and submit the PR again for review. Regards, JP -Original Message- From: Kinney, Michael D Sent: Thursday, April 18, 2024 10:46 AM To: Jayaprakash, N ; devel@edk2.groups.io Cc: Rebecca Cran ; Kinney, Michael D Subject: RE: [edk2-devel

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc:add rdmsr_ex & wrmsr_ex functions to read/write cpu specific msrs

2024-04-17 Thread Jayaprakash, N
the validation and debug scenarios only. This is not for switching the BSP for OS boot. This is only used during the validation and debug use cases. Regards, JP -Original Message- From: Kinney, Michael D Sent: Thursday, April 18, 2024 12:08 AM To: Jayaprakash, N ; devel@edk2.groups.io

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc:add rdmsr_ex & wrmsr_ex functions to read/write cpu specific msrs

2024-04-14 Thread Jayaprakash, N
+ Rebecca and Mike, Would you be able to review this PR? Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Wednesday, April 10, 2024 11:49 AM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D Subject: [edk2-devel

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc:add rdmsr_ex & wrmsr_ex functions to read/write cpu specific msrs

2024-04-10 Thread Jayaprakash, N
Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../PyMod-3.6.8/Modules/edk2module.c | 159 +- .../Python/Python-3.6.8/Python368.inf | 3 + 2 files changed, 158 insertions(+), 4 deletions(-) diff --git a/AppPkg/Applications/Python

[edk2-devel] [edk2-libc Patch 0/1] add rdmsr_ex & wrmsr_ex functions to read/write msrs from specific cpu

2024-04-10 Thread Jayaprakash, N
This patch adds 2 new functions to read and write msrs from specific CPUs. rdmsr_ex and wrmsr_ex are the 2 new functions added into edk2module to provide the read and write of CPU specific MSRs. Jayaprakash N (1): edk2-libc:add rdmsr_ex & wrmsr_ex functions to read/write cpu specific

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: wrmsr function available in edk2module is not working as expected

2024-04-10 Thread Jayaprakash, N
Reviewed-by : Jayaprakash N -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Thursday, April 4, 2024 3:14 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D Subject: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: wrmsr

[edk2-devel] [edk2-libc Patch 0/1] wrmsr function is not working as expected.

2024-04-04 Thread Jayaprakash, N
The wrmsr function always writes 0s to the higher 32 bits of the msr register. This issue has been fixed by this PR. Jayaprakash N (1): edk2-libc: wrmsr function available in edk2module is not working as expected .../Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c| 2 +- 1

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc: wrmsr function available in edk2module is not working as expected

2024-04-04 Thread Jayaprakash, N
t to 0. This statement has been modified as below: data = (((UINT64)vedx) << 32) | veax; Verified the function by making this change and could see that the wrmsr is working as expected. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../Python/

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: writeio function in edk2module.c not working as expected

2023-12-09 Thread Jayaprakash, N
using writeio function in edk2module.c Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c| 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppPkg/Applications/Python

[edk2-devel] [edk2-libc Patch 0/1] writeio() edk2module not working as expected

2023-12-09 Thread Jayaprakash, N
This commit fixes the issue reported in BZ4619. The writeio() function in edk2module.c in edk2-libc/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules which uses IoWrite* functions was passing the parameters in incorrect order. This has been fixed. Jayaprakash N (1): ek2-libc: writeio

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Fixed typo issues in multiple files

2023-11-24 Thread Jayaprakash, N
Reviewed-by : Jayaprakash Nevara -Original Message- From: R, Vishal Sent: Friday, November 24, 2023 4:41 PM To: devel@edk2.groups.io Cc: R, Vishal ; Rebecca Cran ; Kinney, Michael D ; Jayaprakash, N Subject: [edk2-libc Patch 1/1] edk2-libc/StdLib: Fixed typo issues in multiple files

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Sample python scripts for socket client capabilities on UEFI shell

2023-11-10 Thread Jayaprakash, N
These are simple Python apps to demonstrate the usage of socket communication using the HTTP library. Reviewed-by : Jayaprakash N Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Friday, October 27, 2023 9:57 PM To: devel@edk2.groups.io Cc

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Sample python scripts for socket client capabilities on UEFI shell

2023-10-27 Thread Jayaprakash, N
are provided as sample scripts to exercise the python http library from UEFI shell. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash Nevara --- .../PyMod-3.6.8/Lib/http_echo_client.py | 81 +++ .../PyMod-3.6.8/Lib/http_echo_server.py

[edk2-devel] [edk2-libc Patch 0/1] AppPkg/Python - Sample scripts to exercise socket functionality

2023-10-27 Thread Jayaprakash, N
This commit provides 2 sample scripts namely http_echo_client.py and http_echo_server.py to exercise the socket capabilities on UEFI shell using the http library from Python UEFI interpreter. Jayaprakash N (1): ek2-libc: Sample python scripts for socket client capabilities on UEFI shell

Re: [edk2-devel] [edk2-libc Patch 0/1] fix missing nanf definition in StdLib

2023-10-26 Thread Jayaprakash, N
Reviewed-by : Jayaprakash Nevara Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Thursday, October 26, 2023 9:00 PM To: devel@edk2.groups.io Cc: Jayaprakash, N Subject: [edk2-devel] [edk2-libc Patch 0/1] fix missing nanf definition

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: realpath function signature doesn't match the standard

2023-10-26 Thread Jayaprakash, N
Reviewed-by: Jayaprakash Nevara It's simple fix to align the function signature as per the standards. Regards, JP -Original Message- From: Jayaprakash, N Sent: Thursday, October 26, 2023 7:47 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D ; Kloper

[edk2-devel] [edk2-libc Patch 0/1] fix missing nanf definition in StdLib

2023-10-26 Thread Jayaprakash, N
This patch fixes the issue of missing definition of nanf in StdLib. This has been extracted from the below PR submitted on edk2-libc. https://github.com/tianocore/edk2-libc/pull/9 Jayaprakash N (1): ek2-libc: fix missing nanf definition in StdLib StdLib/LibC/LibC.inf| 1 + StdLib

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: fix missing nanf definition in StdLib

2023-10-26 Thread Jayaprakash, N
https://github.com/tianocore/edk2-libc/pull/9. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Kloper Dimitry --- StdLib/LibC/LibC.inf| 1 + StdLib/LibC/Main/nanf_ieee754.c | 15 +++ 2 files changed, 16 insertions(+) create mode 100644 StdLib

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: realpath function signature doesn't match the standard

2023-10-26 Thread Jayaprakash, N
below https://pubs.opengroup.org/onlinepubs/009695399/functions/realpath.html This patch extracted from the above pull request fixes this issue. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Kloper Dimitry --- StdLib/Include/stdlib.h | 4 ++-- StdLib/LibC/StdLib

[edk2-devel] [edk2-libc Patch 0/1] realpath function signature doesn't match standard

2023-10-26 Thread Jayaprakash, N
This patch fixes the function signature of realpath to match with the standard defined signature. This patch bas been extracted from the below pull request raised on edk2-libc. https://github.com/tianocore/edk2-libc/pull/10 Jayaprakash N (1): ek2-libc: realpath function signature doesn't

Re: [edk2-devel] edk2-libc Python Build issue

2023-10-22 Thread Jayaprakash, N
You can build edk2-libc Python 3.6.8 using GCC tool chain by following the BKMs documented in this file https://github.com/tianocore/edk2-libc/blob/master/AppPkg/Applications/Python/Python-3.6.8/GCCCompilationBKMs.rst -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-22 Thread Jayaprakash, N
; Jayaprakash, N Cc: Rebecca Cran ; Kinney, Michael D ; Tyler Erickson ; Ard Biesheuvel ; Leif Lindholm Subject: Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM On Fri, Oct 20, 2023 at 3:04 PM Jayaprakash, N wrote: > > REF:

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-20 Thread Jayaprakash, N
: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Tyler Erickson --- StdLib/Include/Aarch64/machine/int_fmtio.h | 211 + StdLib/Include/Arm/machine/int_fmtio.h | 211 + StdLib/Include/Ia32/machine/int_fmtio.h| 212 + StdLib/Include/X64/machine

[edk2-devel] [edk2-libc Patch 0/1] edk2-libc - Enhancements to StdLibc

2023-10-20 Thread Jayaprakash, N
This patch request contains enhancements made to StdLibc through BZ https://bugzilla.tianocore.org/show_bug.cgi?id=4570 Jayaprakash N (1): ek2-libc: Enhance StdLib for supporting Aarch64 and ARM StdLib/Include/Aarch64/machine/int_fmtio.h | 211 + StdLib/Include/Arm/machine

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Fix compilation instructions of socket module as builtin module

2023-09-01 Thread Jayaprakash, N
It's a documentation change. Reviewed-by: Jayaprakash N -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Friday, September 1, 2023 9:48 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D Subject: [edk2-devel] [edk2-libc

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Fix compilation instructions of socket module as builtin module

2023-09-01 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4548 This change fixes the insufficient documentation instructions to compile socket module as built in module into Python interpreter Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../Python

[edk2-devel] [edk2-libc Patch 0/1] AppPkg - fix python socket module compilation instructions

2023-09-01 Thread Jayaprakash, N
This patch fixes the insufficient documentation issue in Py368ReadMe.txt for compiling the socket module as builtin module of Python. The issue is reported in BZ 4548. Jayaprakash N (1): ek2-libc: Fix compilation instructions of socket module as builtin module .../Python/Python-3.6.8

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: socket module of python UEFI fails to compile with GCC

2023-08-31 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4545 The compilation issues reported in the BZ are fixed by defining below 2 macros in pyconfig.h HAVE_ADDRINFO HAVE_SOCKADDR_STORAGE Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .../Python

[edk2-devel] [edk2-libc Patch 0/1] python socket module fails with GCC compiler

2023-08-31 Thread Jayaprakash, N
This patch fixes the compilation issue of Python UEFI interpreters socket module due to duplicate definitions of certain structures as reported in BZ 4545. Jayaprakash N (1): ek2-libc: socket module of python UEFI fails to compile with GCC .../Python/Python-3.6.8/PyMod-3.6.8/Include

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: Socket completion functions are not called on Linux Compilation

2023-08-29 Thread Jayaprakash, N
Reviewed-by: Jayaprakash N Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Monday, August 28, 2023 4:01 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D ; Kloper, Dimitry Subject: [edk2-devel] [edk2-libc

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc: Socket completion functions are not called on Linux Compilation

2023-08-28 Thread Jayaprakash, N
ed, since there are additional callback functions that suffer from the same problem. In addition fixing those causes some compiler warnings that shall be addressed. Attached patch fixes the problem for me. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Dimitry Kloper --- StdLib/EfiSock

[edk2-devel] [edk2-libc Patch 0/1] Socket completion functions not called on Linux Compilation

2023-08-28 Thread Jayaprakash, N
This patch fixes the issue reported in BZ given below: https://bugzilla.tianocore.org/show_bug.cgi?id=983 Patch extracted from PR https://github.com/tianocore/edk2-libc/pull/7 Jayaprakash N (1): edk2-libc: Socket completion functions are not called on Linux Compilation StdLib/EfiSocketLib

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Fix console jump to 0, 0 issue in lseek()

2023-08-25 Thread Jayaprakash, N
Reviewed the changes and it looks good. Also verified that the fix solves the problem. Reviewed-by : Jayaprakash N -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Thursday, August 24, 2023 10:04 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Fix console jump to 0, 0 issue in lseek()

2023-08-24 Thread Jayaprakash, N
, SEEK_CUR) will send cursor to (0,0). This fix is not generic, but solves the particular situation. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Kloper Dimitry --- StdLib/LibC/Uefi/Devices/Console/daConsole.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion

[edk2-devel] [edk2-libc Patch 0/1] Fix issue with lseek function

2023-08-24 Thread Jayaprakash, N
This patch fixes a corner case issue with the lseek function. The issue is captured in BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4531 Jayaprakash N (1): edk2-libc/StdLib: Fix console jump to 0, 0 issue in lseek() StdLib/LibC/Uefi/Devices/Console/daConsole.c | 10 +- 1 file

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: file descriptor leak in rename()

2023-08-21 Thread Jayaprakash, N
- just close the fd before returning from the function. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Kloper Dimitry --- StdLib/LibC/Uefi/Devices/UefiShell/daShell.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/StdLib/LibC/Uefi/Devices/UefiShell/daShell.c b

[edk2-devel] [edk2-libc Patch 0/1] file descriptor leak in rename

2023-08-21 Thread Jayaprakash, N
This patch provides fix for the file descriptor leak issue in rename function from the LibC library of the StdLib of edk2-libc Jayaprakash N (1): edk2-libc/StdLib: file descriptor leak in rename() StdLib/LibC/Uefi/Devices/UefiShell/daShell.c | 2 ++ 1 file changed, 2 insertions

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/AppPkg: Fix documentation issue with edk2module.c

2023-08-07 Thread Jayaprakash, N
Reviewed-by: Jayaprakash Nevara -Original Message- From: R, Vishal Sent: Thursday, August 3, 2023 10:12 PM To: devel@edk2.groups.io Cc: R, Vishal ; Rebecca Cran ; Kinney, Michael D ; Jayaprakash, N Subject: [edk2-libc Patch 1/1] edk2-libc/AppPkg: Fix documentation issue

Re: [edk2-devel] [edk2-libc Patch v2 1/1] edk2-libc/StdLib: Fix uninitialized global variable

2023-07-30 Thread Jayaprakash, N
Reviewed-by: Jayaprakash N Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Wednesday, July 26, 2023 9:09 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D ; Kloper, Dimitry Subject: [edk2-devel] [edk2-libc

[edk2-devel] [edk2-libc Patch v2 1/1] edk2-libc/StdLib: Fix uninitialized global variable

2023-07-26 Thread Jayaprakash, N
optimization this can fill the variable with garbage that is later used by res_init(). Fix is trivial - explicitly initialize _res. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Kloper Dimitry --- StdLib/BsdSocketLib/res_init.c | 6 -- 1 file changed, 4 insertions

[edk2-devel] [edk2-libc Patch v2 0/1] edk2-libc:Fix uninitialized global variable

2023-07-26 Thread Jayaprakash, N
This patch contains a fix for the uninitialized global variable in edk2-libc/StdLib/BsdSocketLib/res_init.c Jayaprakash N (1): edk2-libc/StdLib: Fix uninitialized global variable StdLib/BsdSocketLib/res_init.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) -- 2.40.0.windows.1

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Fix uninitialized global variable

2023-07-25 Thread Jayaprakash, N
optimization this can fill the variable with garbage that is later used by res_init(). Fix is trivial - explicitly initialize _res. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Kloper Dimitry --- StdLib/BsdSocketLib/res_init.c | 6 -- 1 file changed, 4 insertions

[edk2-devel] [edk2-libc Patch 0/1] edk2-libc/StdLib: Fix uninitialized global variable

2023-07-25 Thread Jayaprakash, N
This patch contains the fix for uninitialized global variable in edk2-libc/StdLib/BsdSocketLib/res_init.c file. Jayaprakash N (1): edk2-libc/StdLib: Fix uninitialized global variable StdLib/BsdSocketLib/res_init.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) -- 2.40.0.windows

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
Reviewed by : Jayaprakash N -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: Friday, July 21, 2023 9:22 PM To: Kinney, Michael D ; devel@edk2.groups.io Cc: Rebecca Cran ; Kloper, Dimitry ; Kloper, Dimitry Subject: Re: [edk2-devel] [edk2-libc Patch 1/1

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
-Original Message- From: Kinney, Michael D Sent: Friday, July 21, 2023 9:03 PM To: Jayaprakash, N ; devel@edk2.groups.io Cc: Rebecca Cran ; Kloper, Dimitry ; Kloper, Dimitry ; Kinney, Michael D Subject: RE: [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable Hi JP, I have

[edk2-devel] [edk2-libc Patch v2 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
optimization this can fill the variable with garbage that is later used by res_init(). Fix is trivial - explicitly initialize _res Cc: Rebecca Cran Cc: Michael D Kinney Co-authored-by: Kloper Dimitry Signed-off-by: Jayaprakash N --- StdLib/BsdSocketLib/res_init.c | 7 --- 1 file changed, 4

[edk2-devel] [edk2-libc Patch v2 0/1] edk2-libc/StdLib fix uninitialized global variable

2023-07-21 Thread Jayaprakash, N
This patch has fix for un-initialized global variable in the edk2-libc repos StdLib/BsdSocketLib. Jayaprakash N (1): edk2-libc/StdLib: Uninitialized global variable StdLib/BsdSocketLib/res_init.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) -- 2.40.0.windows.1

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
optimization this can fill the variable with garbage that is later used by res_init(). Fix is trivial - explicitly initialize _res. Cc: Rebecca Cran Cc: Michael D Kinney Co-authored-by: Kloper, Dimitry Signed-off-by: Jayaprakash N --- StdLib/BsdSocketLib/res_init.c | 10 +- 1 file changed

[edk2-devel] [edk2-libc Patch 0/1] edk2-libc/StdLib fix uninitialized global variable

2023-07-21 Thread Jayaprakash, N
This patch has fix for un-initialized global variable in the edk2-libc repos StdLib/BsdSocketLib. Jayaprakash N (1): edk2-libc/StdLib: Uninitialized global variable StdLib/BsdSocketLib/res_init.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) -- 2.40.0.windows.1

Re: [edk2-devel] [edk2-libc Patch 1/1] Python/Python3.6.8: migration of edk2module from chipsec repo

2023-03-31 Thread Jayaprakash, N
Reviewed-by: Jayaprakash N Merged the Patch by updating trailing spaces and Tabs. -Original Message- From: Kadapathri, Ajay Sent: Thursday, March 30, 2023 11:27 AM To: devel@edk2.groups.io Cc: Rebecca Cran ; Kinney, Michael D ; Jayaprakash, N Subject: [edk2-libc Patch 1/1] Python

Re: [edk2-devel] [edk2-libc Patch 1/1] Python/Python3.6.8: migration of edk2module from chipsec repo

2023-03-29 Thread Jayaprakash, N
link.exe"' : return code '0x460' Stop. Regards, JP -Original Message- From: Kadapathri, Ajay Sent: Monday, March 27, 2023 1:35 PM To: devel@edk2.groups.io Cc: Rebecca Cran ; Kinney, Michael D ; Jayaprakash, N Subject: [edk2-libc Patch 1/1] Python/Python3.6.8: migration of edk2

[edk2-devel] [edk2-libc Patch 0/1] Update Maintainer Info

2023-03-26 Thread Jayaprakash, N
This patch is for updating the maintainer info of edk2-libc repo. Jayaprakash N (1): edk2-libc: Update Maintainer.txt file Maintainers.txt | 2 ++ 1 file changed, 2 insertions(+) -- 2.40.0.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc: Update Maintainer.txt file

2023-03-26 Thread Jayaprakash, N
REF : https://bugzilla.tianocore.org/show_bug.cgi?id=4388 This commit adds Jayaprakash N as one of the maintainers of edk2-libc repo. Cc: Rebecca Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- Maintainers.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Maintainers.txt b

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: migration of edk2module from chipsec repo

2022-11-29 Thread Jayaprakash, N
Sure Mike. Thanks for your inputs and recommendations. Regards, JP -Original Message- From: Kinney, Michael D Sent: 29 November 2022 23:28 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Rebecca Cran ; Kadapathri, Ajay ; Frinzell, Aaron Subject: RE: [edk2-libc

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: migration of edk2module from chipsec repo

2022-11-29 Thread Jayaprakash, N
. We shall definitely take up your suggestions early in the next year 2023. Let me know if this idea sounds good. Regards, JP -Original Message- From: Kinney, Michael D Sent: 29 November 2022 21:23 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Rebecca Cran Subject

[edk2-devel] [edk2-libc Patch 0/1] edk2-libc : migration of edk2 module from chipsec repo

2022-11-21 Thread Jayaprakash, N
This PR contains the changes required to merge the edk2 module enhancements from chipsec repo to edk2-libc. More details are updated in the BZ https://bugzilla.tianocore.org/show_bug.cgi?id=4161 Jayaprakash Nevara (1): edk2-libc: migration of edk2module from chipsec repo

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc: migration of edk2module from chipsec repo

2022-11-21 Thread Jayaprakash, N
Cran Cc: Michael D Kinney Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jayaprakash N Reviewed-by: Michael D Kinney --- .../Python-3.6.8/PyMod-3.6.8/Modules/cpu.asm | 519 .../PyMod-3.6.8/Modules/cpu_ia32.asm | 395 .../PyMod-3.6.8

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: remove substring 368 from py uefi app name

2022-10-31 Thread Jayaprakash, N
Hi Mike, Thanks for reviewing the PR Could you merge this PR? Regards, JP -Original Message- From: Kinney, Michael D Sent: 27 October 2022 21:25 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Rebecca Cran Subject: RE: [edk2-libc Patch 1/1] edk2-libc: remove

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc: remove substring 368 from py uefi app name

2022-10-27 Thread Jayaprakash, N
was requested by chipsec team. Cc: Rebecca Cran Cc: Michael D Kinney Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jayaprakash N --- .../Python-3.6.8/GCCCompilationBKMs.rst | 10 +-- .../Python/Python-3.6.8/Py368ReadMe.txt | 14 ++-- .../Python/Python-3.6.8

[edk2-devel] [edk2-libc Patch 0/1] edk2-libc - to remove substring 368 from python uefi app name

2022-10-27 Thread Jayaprakash, N
This patch request contains the necessary changes to remove the substring 368 from the name of the python uefi interpreter app. The app name will change from python368.efi to python.efi Jayaprakash Nevara (1): edk2-libc: remove substring 368 from py uefi app name

Re: [edk2-devel] Python368.efi failed to run in shell environment

2022-10-19 Thread Jayaprakash, N
vide access to System Firmware Tables from Python scripts<https://bugzilla.tianocore.org/show_bug.cgi?id=3786> Regards, JP From: Yoshinoya Sent: 20 October 2022 08:36 To: Jayaprakash, N Cc: Kinney, Michael D ; devel@edk2.groups.io Subject: Re:RE: Re:RE: Re:RE: [edk2-devel] Python368

Re: [edk2-devel] Python368.efi failed to run in shell environment

2022-10-19 Thread Jayaprakash, N
You may follow instructions provided in https://github.com/tianocore/edk2-libc/blob/master/AppPkg/Applications/Python/Python-3.6.8/GCCCompilationBKMs.rst Regards, JP From: Yoshinoya Sent: 19 October 2022 14:01 To: Jayaprakash, N Cc: Kinney, Michael D ; devel@edk2.groups.io Subject: Re:RE

Re: [edk2-devel] Python368.efi failed to run in shell environment

2022-10-18 Thread Jayaprakash, N
To: Kinney, Michael D Cc: devel@edk2.groups.io; Jayaprakash, N Subject: Re:RE: [edk2-devel] Python368.efi failed to run in shell environment Hi, JP: It seems PyImport_ImportModule("encoding.utf_8") failed. Do you have any suggestions? THank you very much! best wishes, At 202

Re: [edk2-devel] Python368 socket support #includes

2022-08-31 Thread Jayaprakash, N
The socket module is not enabled in the Open source version of the Python UEFI interpreter available in edk2-libc. It needs some porting effort. Regards, JP From: devel@edk2.groups.io On Behalf Of chesig...@gmail.com Sent: 30 August 2022 23:51 To: devel@edk2.groups.io Subject: [edk2-devel]

[edk2-devel] Issue in building the StdLibc using Clang38 for 64 bit build on Ubuntu 20.02

2022-07-01 Thread Jayaprakash, N
Hi All, I am trying to build AppPkg under edk2-libc project using the clang compiler tool chain from Ubuntu 20.04 system. While doing so I am encountering an error, which I am not able to resolve. This error is coming from the Standard C Library module as shown below. Any clues to solve this

Re: [edk2-devel] [edk2 Patch 1/1] Windows-systems.mediawiki: replaced p2.7 reference with py3.7

2022-06-28 Thread Jayaprakash, N
Could you please review and merge this change? This is a simple documentation fix only. Regards, JP -Original Message- From: Jayaprakash, N Sent: 17 June 2022 14:24 To: devel@edk2.groups.io Cc: Kinney, Michael D ; Gao, Liming Subject: RE: [edk2 Patch 1/1] Windows-systems.mediawiki

Re: [edk2-devel] [edk2 Patch 1/1] Windows-systems.mediawiki: replaced p2.7 reference with py3.7

2022-06-17 Thread Jayaprakash, N
This is a simple documentation fix. Could some one from the group review and merge these changes? Regards, JP -Original Message- From: Jayaprakash, N Sent: 10 June 2022 09:19 To: devel@edk2.groups.io Cc: Kinney, Michael D ; Gao, Liming ; Jayaprakash, N Subject: [edk2 Patch 1/1

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib : Changes to Std LibC to facilitate 32 bit GCC builds

2022-06-17 Thread Jayaprakash, N
of LibC.inf to support use of GCC intrinsics from Gcc.c. * Moved Main/Ia32/ftol2.obj in LibC.inf from binaries section to Sources.IA32 required only for MSFT IA32 compiler tool chain Cc: Michael D Kinney Cc: Rebecca Cran Signed-off-by: Jayaprakash N --- StdLib/LibC/CRT/Gcc.c | 7 +++ StdLib

[edk2-devel] [edk2-libc Patch 0/1] Changes to StdLib to facilitate gcc 32 bit builds

2022-06-17 Thread Jayaprakash, N
This patch contains the changes required for StdLib to facilitate the gcc 32 bit builds. Jayaprakash Nevara (1): edk2-libc/StdLib : Changes to Std LibC to facilitate 32 bit GCC builds StdLib/LibC/CRT/Gcc.c | 7 +++ StdLib/LibC/LibC.inf | 7 +++ 2 files changed, 10 insertions(+), 4

[edk2-devel] [edk2 Patch 1/1] Windows-systems.mediawiki: replaced p2.7 reference with py3.7

2022-06-09 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3788 Removed an outdated reference to py2.7 in the Windows systems wiki page and replaced it with the py3.7 to align with the updated build instructions Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Jayaprakash N --- Windows

[edk2-devel] [edk2 Patch 0/1] updated py2.7 reference in wiki build instructions

2022-06-09 Thread Jayaprakash, N
This patch is to fix the documentation issue in wiki page where it had reference to py2.7 in the build instructions. This has been updated to refer to py3.7 to align with the rest of the build instructions. Jayaprakash Nevara (1): Windows-systems.mediawiki: replaced p2.7 reference with py3.7

[edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8: GCC tool chain support

2022-05-18 Thread Jayaprakash, N
the dependencies taken from the build environment. Cc: Rebecca Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- .../Python-3.6.8/GCCCompilationBKMs.rst | 193 ++ .../PyMod-3.6.8/Include/pyconfig.h| 2 +- .../Python-3.6.8/PyMod-3.6.8/Modules

[edk2-devel] [edk2-libc Patch 0/1] GCC tool chain support for building Py 3.6.8 for UEFI

2022-05-18 Thread Jayaprakash, N
This PR contains the necessary changes required to build the Py 3.6.8 interpreter for UEFI using GCC tool chain from Linux based OSes such as Ubuntu (20.04 LTS) Jayaprakash Nevara (1): AppPkg\Applications\Python\Python-3.6.8: GCC tool chain support .../Python-3.6.8/GCCCompilationBKMs.rst

Re: [edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment

2022-04-12 Thread Jayaprakash, N
Hi Mike, This patch is yet to be merged. Could you look into this? Regards, JP -Original Message- From: Kinney, Michael D Sent: 08 April 2022 23:30 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Frinzell, Aaron Subject: RE: [edk2-devel] [edk2-libc Patch 1/1

Re: [edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment

2022-04-08 Thread Jayaprakash, N
+ Aaron Regards, JP -Original Message- From: devel@edk2.groups.io On Behalf Of Jayaprakash, N Sent: 08 April 2022 22:12 To: Kinney, Michael D ; devel@edk2.groups.io Subject: Re: [edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI

Re: [edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment

2022-04-08 Thread Jayaprakash, N
uuid.py module code. Regards, JP -Original Message- From: Kinney, Michael D Sent: 08 April 2022 21:14 To: devel@edk2.groups.io; Jayaprakash, N ; Kinney, Michael D Subject: RE: [edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port

[edk2-devel] [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment

2022-04-08 Thread Jayaprakash, N
properly. Cc: Rebecca Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- .../Python/Python-3.6.8/Lib/uuid.py | 94 ++- 1 file changed, 50 insertions(+), 44 deletions(-) diff --git a/AppPkg/Applications/Python/Python-3.6.8/Lib/uuid.py b/AppPkg/Applications/Python

[edk2-devel] [edk2-libc Patch 0/1] added support for uuid.py module for uefi environment

2022-04-08 Thread Jayaprakash, N
This patch contains the uuid.py updated module with the changes required to support it working on uefi environment. Jayaprakash Nevara (1): AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment .../Python/Python-3.6.8/Lib/uuid.py | 94

Re: [edk2-devel] [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix readme files in edk2-libc

2021-11-03 Thread Jayaprakash, N
Hi Mike, Has this change been merged to master? Regards, JP -Original Message- From: Kinney, Michael D Sent: 02 November 2021 00:30 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Rebecca Cran Subject: RE: [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix

Re: [edk2-devel] [edk2-libc Patch v3 5/5] AppPkg/Applications/Python: to update readme files in edk2-libc

2021-11-01 Thread Jayaprakash, N
Hi Mike, Submitted the updated PR. Regards, JP -Original Message- From: Jayaprakash, N Sent: 02 November 2021 00:01 To: Kinney, Michael D ; devel@edk2.groups.io Cc: Rebecca Cran Subject: RE: [edk2-libc Patch v3 5/5] AppPkg/Applications/Python: to update readme files in edk2-libc Hi

[edk2-devel] [edk2-libc Patch V4 1/6] AppPkg/Applications/Python: To remove the py2.7.2 uefi port code

2021-11-01 Thread Jayaprakash, N
-=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#83022): https://edk2.groups.io/g/devel/message/83022 Mute This Topic: https://groups.io/mt/86748855/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe:

[edk2-devel] [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix readme files in edk2-libc

2021-11-01 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3589 This commit is to update remaining references to py 2.7.10 in StdLib/Readme.txt and StdLibPrivateInternalFiles/ReadMe.txt documents to py3.6.8. Cc: Rebecca Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- StdLib/ReadMe.txt

[edk2-devel] [edk2-libc Patch V4 5/6] AppPkg/Applications/Python: to update readme files in edk2-libc

2021-11-01 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3589 This commit is to update references to py 2.7.10 in StdLib/Readme.txt and StdLibPrivateInternalFiles/ReadMe.txt documents to py3.6.8. Cc: Rebecca Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- StdLib/ReadMe.txt

[edk2-devel] [edk2-libc Patch V4 4/6] AppPkg/Applications/Python: to remove py2.7.10 references from edk2-libc

2021-11-01 Thread Jayaprakash, N
Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- Readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Readme.md b/Readme.md index f0e9501..2d7690d 100644 --- a/Readme.md +++ b/Readme.md @@ -22,7 +22,6 @@ The majority of the content in the EDK II open source project uses

[edk2-devel] [edk2-libc Patch V4 2/6] AppPkg/Applications/Python: to remove document references to py2.7.2

2021-11-01 Thread Jayaprakash, N
Signed-off-by: Jayaprakash N --- AppPkg/Applications/Python/PythonReadMe.txt | 237 AppPkg/ReadMe.txt | 22 +- Readme.md | 3 +- 3 files changed, 11 insertions(+), 251 deletions(-) delete mode 100644 AppPkg

[edk2-devel] [edk2-libc Patch V4 3/6] AppPkg/Applications/Python: to remove py2.7.10 support from edk2-libc

2021-11-01 Thread Jayaprakash, N
-=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#83017): https://edk2.groups.io/g/devel/message/83017 Mute This Topic: https://groups.io/mt/86748823/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe:

Re: [edk2-devel] [edk2-libc Patch v3 5/5] AppPkg/Applications/Python: to update readme files in edk2-libc

2021-11-01 Thread Jayaprakash, N
Hi Mike, I didn’t notice this. Will send an updated patch. Sorry for the inconvenience. Regards, JP -Original Message- From: Kinney, Michael D Sent: 01 November 2021 21:59 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Rebecca Cran Subject: RE: [edk2-libc Patch

[edk2-devel] [edk2-libc Patch v3 5/5] AppPkg/Applications/Python: to update readme files in edk2-libc

2021-10-30 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3589 This commit is to update references to py 2.7.10 in StdLib/Readme.txt and StdLibPrivateInternalFiles/ReadMe.txt documents to py3.6.8. Cc: Rebecca Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- StdLib/ReadMe.txt

[edk2-devel] [edk2-libc Patch v3 4/5] AppPkg/Applications/Python: to remove py2.7.10 references from edk2-libc

2021-10-30 Thread Jayaprakash, N
Cran Cc: Michael D Kinney Signed-off-by: Jayaprakash N --- Readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Readme.md b/Readme.md index f0e9501..2d7690d 100644 --- a/Readme.md +++ b/Readme.md @@ -22,7 +22,6 @@ The majority of the content in the EDK II open source project uses

[edk2-devel] [edk2-libc Patch v3 2/5] AppPkg/Applications/Python: to remove document references to py2.7.2

2021-10-30 Thread Jayaprakash, N
Signed-off-by: Jayaprakash N --- AppPkg/Applications/Python/PythonReadMe.txt | 237 AppPkg/ReadMe.txt | 22 +- Readme.md | 3 +- 3 files changed, 11 insertions(+), 251 deletions(-) delete mode 100644 AppPkg

Re: [edk2-devel] [edk2-libc Patch 1/1] AppPkg/Applications/Python: Remove py2.7.2 support from edk2-libc

2021-10-29 Thread Jayaprakash, N
Thanks Mike for the review comments. I have made the changes to readme files as you have suggested. Regards, JP -Original Message- From: Kinney, Michael D Sent: 29 October 2021 10:39 To: Jayaprakash, N ; devel@edk2.groups.io; Kinney, Michael D Cc: Rebecca Cran Subject: RE: [edk2

  1   2   >