Re: [edk2-devel] edk2-test: Request for new github repo

2021-05-24 Thread Grant Likely
devel@edk2.groups.io On Behalf Of Grant Likely Sent: Wednesday, May 12, 2021 5:32 AM To: devel@edk2.groups.io; G Edhaya Chandran ; Samer El-Haj-Mahmoud Cc: n...@arm.com Subject: [edk2-devel] edk2-test: Request for new github repo Would it be possible to get a new repo under the github.com/tianoco

[edk2-devel] edk2-test: Request for new github repo

2021-05-12 Thread Grant Likely
Would it be possible to get a new repo under the github.com/tianocore project? I've got a repo manifest that I've been using for building the SCT, and is now being used by quite a few people. However it is currently hosted under my personal area here: https://github.com/glikely/edk2-test-manif

[edk2-devel] [edk2-sct PATCH] buildzip: Add CapsuleApp.efi to the SCT zip file

2021-04-27 Thread Grant Likely
CapsuleApp.efi is necessary for testing capsule updates of the firmware. Add it into the default build. Cc: G Edhaya Chandran Cc: Barton Gao Signed-off-by: Grant Likely --- uefi-sct/SctPkg/buildzip.sh | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/uefi-sct/SctPkg

Re: [edk2-devel] [edk2-sct PATCH 3/3] edk2-test: Helper script to build SCT+Shell in a bootable format

2021-02-19 Thread Grant Likely
Warm Regards, Edhay -Original Message- From: Grant Likely Sent: 11 February 2021 23:16 To: devel@edk2.groups.io; G Edhaya Chandran ; Barton Gao Cc: nd ; Samer El-Haj-Mahmoud ; Grant Likely Subject: [edk2-sct PATCH 3/3] edk2-test: Helper script to build SCT+Shell in a bootable format

[edk2-devel] [edk2-sct PATCH 1/3] edk2-test: Add support for building extra packages

2021-02-11 Thread Grant Likely
is useful when building a full SCT image that includes the EDK2 shell. Signed-off-by: Grant Likely Cc: G Edhaya Chandran Cc: Barton Gao Cc: Samer El-Haj-Mahmoud --- uefi-sct/SctPkg/build.sh | 34 +- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a

[edk2-devel] [edk2-sct PATCH 3/3] edk2-test: Helper script to build SCT+Shell in a bootable format

2021-02-11 Thread Grant Likely
The buildzip.sh script builds the SCT and the EFI Shell, and then zips them up in a file structure that can be booted when unzipped to a USB drive or other block storage. Signed-off-by: Grant Likely --- uefi-sct/SctPkg/buildzip.sh | 67 + 1 file changed, 67

[edk2-devel] [edk2-sct PATCH 2/3] edk2-test: use bash 'shift' in build.sh to manage arguments

2021-02-11 Thread Grant Likely
The script was using a big list of numerical argument to pass on extra parameters. Use the bash 'shift' command to carve of arguments for the script so that $@ can be used for the remainder. Signed-off-by: Grant Likely --- uefi-sct/SctPkg/build.sh | 9 ++--- 1 file changed, 6

Re: [edk2-devel] [PATCH] Check return status on calls to GetTime()

2020-08-04 Thread Grant Likely
On 01/08/2020 14:54, Heinrich Schuchardt wrote: On 7/31/20 7:19 PM, Grant Likely wrote: [...]>> diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/BootServices/MiscBootServices/BlackBoxTest/MiscBootServicesBBTestFunction.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/BootServices/MiscBootSe

[edk2-devel] [PATCH] Check return status on calls to GetTime()

2020-07-31 Thread Grant Likely
ditional 1/1/1970 epoch so that the test report at least looks sane, but it is obvious that we don't have a valid timestamp. Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=2870 Cc: G Edhaya Chandran Cc: Heinrich Schuchardt Cc: Samer El-Haj-Mahmoud Signed-off-b