|
Re: [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment
The UUID generation is done through the random number generation & time unix time stamp features available through the built-in python modules 'random' and 'time' respectively.
The random number &
The UUID generation is done through the random number generation & time unix time stamp features available through the built-in python modules 'random' and 'time' respectively.
The random number &
|
By
Jayaprakash, N
·
#88641
·
|
|
[PATCH] ShellPkg: Update smbiosview type 41 with SMBIOS 3.5 fields
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3900
update smbiosview type 41 related fileds.
Signed-off-by: Bo Chang Ke <bo-changx.ke@...>
Cc: Dandan Bi <dandan.bi@...>
Cc: Star
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3900
update smbiosview type 41 related fileds.
Signed-off-by: Bo Chang Ke <bo-changx.ke@...>
Cc: Dandan Bi <dandan.bi@...>
Cc: Star
|
By
Bo Chang Ke
·
#88640
·
|
|
Re: [GSoC 2022] Introducing myself & seeking for project ideas
Hello Nate,
Thanks a lot for your answer ! I got myself a copy of "Beyond BIOS" to understand how UEFI works.
The project sound very interesting, so if I understand correctly, OVMF only implements
Hello Nate,
Thanks a lot for your answer ! I got myself a copy of "Beyond BIOS" to understand how UEFI works.
The project sound very interesting, so if I understand correctly, OVMF only implements
|
By
Théo Jehl
·
#88639
·
|
|
Re: [edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment
How is a UUID generated in UEFI env? Is there a dependency on MAC address or random number generator?
Can you add a description of the technique to the BZ and the commit message?
Thanks,
Mike
How is a UUID generated in UEFI env? Is there a dependency on MAC address or random number generator?
Can you add a description of the technique to the BZ and the commit message?
Thanks,
Mike
|
By
Michael D Kinney
·
#88638
·
|
|
Re: Applying for GSoC 2022: Add Rust Support to EDK II
Hi Nate
Thanks for the response.
For the std implementation, I do have some idea how to go about implementing it now. The most important thing I realized is that most of the std isn't actually std.
Hi Nate
Thanks for the response.
For the std implementation, I do have some idea how to go about implementing it now. The most important thing I realized is that most of the std isn't actually std.
|
By
Ayush Singh
·
#88637
·
|
|
Re: [PATCH v2 7/8] CryptoPkg/CrtLibSupport: fix strcpy
Can we remove inline keyword?
I don't think it is really needed in EDKII project.
Thank you
Yao Jiewen
Can we remove inline keyword?
I don't think it is really needed in EDKII project.
Thank you
Yao Jiewen
|
By
Yao, Jiewen
·
#88636
·
|
|
Re: [PATCH v2 0/8] CryptoPkg updates for openssl 3.0
With inline keyword removed in patch-7/8,
Series reviewed-by: Jiewen Yao <Jiewen.yao@...>
With inline keyword removed in patch-7/8,
Series reviewed-by: Jiewen Yao <Jiewen.yao@...>
|
By
Yao, Jiewen
·
#88635
·
|
|
[edk2-libc Patch 1/1] AppPkg\Applications\Python\Python-3.6.8\Lib: uuid.py module port for UEFI environment
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3899
This is commit contains the UEFI port of uuid.py module. Made necessary
changes required to uuid.py module to support UEFI environment.
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3899
This is commit contains the UEFI port of uuid.py module. Made necessary
changes required to uuid.py module to support UEFI environment.
|
By
Jayaprakash, N
·
#88634
·
|
|
[edk2-libc Patch 0/1] added support for uuid.py module for uefi environment
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
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
|
By
Jayaprakash, N
·
#88633
·
|
|
Re: [PATCH 1/1] UEFI-SCT: SctPkg: Updated the check for monotonic count after restart
Hi Barton,
Thank you for the review.
Could you please upstream the patch.
With Warm Regards,
Edhay
Hi Barton,
Thank you for the review.
Could you please upstream the patch.
With Warm Regards,
Edhay
|
By
G Edhaya Chandran
·
#88632
·
|
|
Re: [staging/LoongArch RESEND PATCH v1 25/33] MdePkg/BaseCpuLib: LoongArch Base CPU library implementation.
Recently there is a work to migrate UefiCpuLib to CpuLib (patch attached), you may want to sync up your changes with that patch set. RISC-V will do the same work later.
Thanks
Abner
Recently there is a work to migrate UefiCpuLib to CpuLib (patch attached), you may want to sync up your changes with that patch set. RISC-V will do the same work later.
Thanks
Abner
|
By
Abner Chang
·
#88631
·
|
|
Re: [staging/LoongArch RESEND PATCH v1 32/33] BaseTools: Add LoongArch64 binding.
By
Abner Chang
·
#88630
·
|
|
[PATCH v2 7/8] CryptoPkg/CrtLibSupport: fix strcpy
strcpy() returns a pointer to the destination string, AsciiStrCpyS()
does not. So a simple #define does not work. Create a inline function
instead.
Signed-off-by: Gerd Hoffmann
strcpy() returns a pointer to the destination string, AsciiStrCpyS()
does not. So a simple #define does not work. Create a inline function
instead.
Signed-off-by: Gerd Hoffmann
|
By
Gerd Hoffmann
·
#88629
·
|
|
[PATCH v2 3/8] CryptoPkg/CrtLibSupport: add INT_MIN
Add #define for INT_MIN.
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
Add #define for INT_MIN.
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
|
By
Gerd Hoffmann
·
#88628
·
|
|
[PATCH v2 8/8] CryptoPkg/UnitTest: fix DH testcase
openssl 3.0 wants at least 512 bytes, otherwise it throws an error:
error:0280007E:Diffie-Hellman routines::modulus too small
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
openssl 3.0 wants at least 512 bytes, otherwise it throws an error:
error:0280007E:Diffie-Hellman routines::modulus too small
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
|
By
Gerd Hoffmann
·
#88627
·
|
|
[PATCH v2 6/8] CryptoPkg/CrtLibSupport: add off_t
Add typedef for off_t.
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff --git
Add typedef for off_t.
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff --git
|
By
Gerd Hoffmann
·
#88626
·
|
|
[PATCH v2 5/8] CryptoPkg/CrtLibSupport: add MODULESDIR
Add dummy MODULESDIR #define
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
Add dummy MODULESDIR #define
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
|
By
Gerd Hoffmann
·
#88625
·
|
|
[PATCH v2 4/8] CryptoPkg/CrtLibSupport: add UINT_MAX
Add define for UINT_MAX.
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
Add define for UINT_MAX.
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
|
By
Gerd Hoffmann
·
#88624
·
|
|
[PATCH v2 2/8] CryptoPkg/CrtLibSupport: add strstr()
Add #define for strstr().
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
Add #define for strstr().
Will be needed by openssl 3.0.
Signed-off-by: Gerd Hoffmann <kraxel@...>
---
CryptoPkg/Library/Include/CrtLibSupport.h | 1 +
1 file changed, 1 insertion(+)
diff
|
By
Gerd Hoffmann
·
#88623
·
|
|
[PATCH v2 0/8] CryptoPkg updates for openssl 3.0
First batch of patches which update CrtLibSupport so it has everything
needed to build openssl3. Also a testcase update for openssl3.
This does not update the openssl submodule, that'll happen in
First batch of patches which update CrtLibSupport so it has everything
needed to build openssl3. Also a testcase update for openssl3.
This does not update the openssl submodule, that'll happen in
|
By
Gerd Hoffmann
·
#88622
·
|