Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Firmware Management Protocol and HII Config Access Protocol into IHVSCT. #3

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion uefi-sct/SctPkg/CommonGenFramework.bat
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ rem copy %ProcessorType%\IhvUsbHcTest.efi %Framework%\T
copy %ProcessorType%\IhvUsb2HcTest.efi %Framework%\Test\ > NUL
copy %ProcessorType%\IhviScsiInitiatorNameBBTest.efi %Framework%\Test\ > NUL
copy %ProcessorType%\IhvStorageSecurityCommandBBTest.efi %Framework%\Test\ > NUL

copy %ProcessorType%\IhvFirmwareManagementBBTest.efi %Framework%\Test\ > NUL
copy %ProcessorType%\IhvHIIConfigAccessBBTest.efi %Framework%\Test\ > NUL
rem *********************************************
rem Copy the UEFI 2.1 Test Cases for IHV
rem *********************************************
Expand Down
3 changes: 2 additions & 1 deletion uefi-sct/SctPkg/CommonGenFramework.sh
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,8 @@ then
cp $ProcessorType/IhvUsb2HcTest.efi $Framework/Test/ > NUL
cp $ProcessorType/IhviScsiInitiatorNameBBTest.efi $Framework/Test/ > NUL
cp $ProcessorType/IhvStorageSecurityCommandBBTest.efi $Framework/Test/ > NUL

cp $ProcessorType/IhvFirmwareManagementBBTest.efi $Framework/Test/ > NUL
cp $ProcessorType/IhvHIIConfigAccessBBTest.efi $Framework/Test/ > NUL
# *********************************************
# Copy the UEFI 2.1 Test Cases for IHV
# *********************************************
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Module Name:
--*/


#include "SctLib.h"
#include "SctLib.h"
#include "BlockIoBBTestMain.h"


Expand Down Expand Up @@ -101,7 +101,7 @@ BBTestReadBlocksConformanceAutoTest (
);
return Status;
}

SctPrint("Microchip ");
BlockIo = (EFI_BLOCK_IO_PROTOCOL *)ClientInterface;

//
Expand Down Expand Up @@ -737,7 +737,7 @@ BBTestReadBlocksConformanceManualTest (
);
return Status;
}

SctPrint("Microchip ");
BlockIo = (EFI_BLOCK_IO_PROTOCOL *)ClientInterface;

//
Expand Down
Loading