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

SecureBoot to Linux post BBSR SCT changes #93

Merged
merged 1 commit into from
Feb 25, 2025
Merged
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
10 changes: 5 additions & 5 deletions bbsr/config/BBSRStartup.nsh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Copyright (c) 2021-2024, Arm Limited or its affiliates. All rights reserved.
# Copyright (c) 2021-2025, Arm Limited or its affiliates. All rights reserved.
# SPDX-License-Identifier : Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -65,15 +65,15 @@ for %i in 0 1 2 3 4 5 6 7 8 9 A B C D E F
Sct -c
endif

#SCT execution has finished. Copy the logs to acs_results
if exist FS%j:\acs_results\sct_results\ then
# BBSR SCT execution has finished. Copy the logs to acs_results
if exist FS%j:\acs_results\BBSR\sct_results\ then
if exist FS%i:\acs_tests\bbr\SCT\Overall then
cp -r FS%i:\acs_tests\bbr\SCT\Overall FS%j:\acs_results\BBSR\sct_results\
endif
if exist FS%i:\acs_tests\bbr\SCT\Sequence then
cp -r FS%i:\acs_tests\bbr\SCT\Sequence\BBSR.seq FS%j:\acs_results\BBSR\sct_results\
cp -r FS%i:\acs_tests\bbr\SCT\Sequence FS%j:\acs_results\BBSR\sct_results\
endif
#Restart to avoid an impact of running SCT tests on rest of the suites
# Restart to avoid an impact of running SCT tests on rest of the suites
echo "Reset the system ..."
reset
endif
Expand Down