Skip to content

Commit 1921c54

Browse files
SR v3.1.1 release version prints update
- updated band version prints in sct, bsa, sbsa, fwts logs Change-Id: I2fdfb53ef346be2a62f23702b6c941d40a47da98
1 parent 9cb4585 commit 1921c54

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

SystemReady-band/patches/bsa_srversion.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ index 4458fe5..80f964c 100644
66
goto exit_acs;
77
}
88

9-
+ val_print(ACS_PRINT_TEST, "\n\n SystemReady band ACS v3.1.1 RC-final", 0);
9+
+ val_print(ACS_PRINT_TEST, "\n\n SystemReady band ACS v3.1.1", 0);
1010
val_print(ACS_PRINT_TEST, "\n\n BSA Architecture Compliance Suite", 0);
1111
val_print(ACS_PRINT_TEST, "\n Version %d.", BSA_ACS_MAJOR_VER);
1212
val_print(ACS_PRINT_TEST, "%d.", BSA_ACS_MINOR_VER);

SystemReady-band/patches/sbsa_srversion.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ index 1695605..d644135 100644
66
goto exit_acs;
77
}
88

9-
+ val_print(ACS_PRINT_ERR, "\n\n SystemReady band ACS v3.1.1 RC-final\n", 0);
9+
+ val_print(ACS_PRINT_ERR, "\n\n SystemReady band ACS v3.1.1\n", 0);
1010
val_print(ACS_PRINT_ERR, "\n\n SBSA Architecture Compliance Suite\n", 0);
1111
val_print(ACS_PRINT_ERR, " Version %d.", SBSA_ACS_MAJOR_VER);
1212
val_print(ACS_PRINT_ERR, "%d.", SBSA_ACS_MINOR_VER);

SystemReady-band/patches/sctversion.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ index 94cae289..6fde9ed0 100644
66
#include "StandardTest.h"
77
#include <Library/EntsLib.h>
88

9-
+#define ACS_VERSION "SystemReady band ACS v3.1.1 RC-final\nBBR ACS 2.1.1 (SBBR)"
9+
+#define ACS_VERSION "SystemReady band ACS v3.1.1\nBBR ACS 2.1.1 (SBBR)"
1010
static EFI_TIME Epoch = { .Year = 1970, .Month = 1, .Day = 1 };
1111

1212
//

common/linux_scripts/bsa.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# @file
4-
# Copyright (c) 2021-2025, Arm Limited or its affiliates. All rights reserved.
4+
# Copyright (c) 2021-2026, Arm Limited or its affiliates. All rights reserved.
55
# SPDX-License-Identifier : Apache-2.0
66

77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -30,7 +30,7 @@ else
3030
mkdir -p /mnt/acs_results/linux
3131
if [ -f /lib/modules/bsa_acs.ko ]; then
3232
insmod /lib/modules/bsa_acs.ko
33-
echo "SystemReady band ACS v3.1.1 RC-final" > /mnt/acs_results/linux/BsaResultsApp.log
33+
echo "SystemReady band ACS v3.1.1" > /mnt/acs_results/linux/BsaResultsApp.log
3434
if [ "$automation_enabled" == "False" ]; then
3535
/bin/bsa --skip-dp-nic-ms >> /mnt/acs_results/linux/BsaResultsApp.log
3636
else

common/linux_scripts/fwts.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# @file
4-
# Copyright (c) 2021-2025, Arm Limited or its affiliates. All rights reserved.
4+
# Copyright (c) 2021-2026, Arm Limited or its affiliates. All rights reserved.
55
# SPDX-License-Identifier : Apache-2.0
66

77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -29,7 +29,7 @@ if [ "$automation_enabled" == "True" ] && [ "$fwts_enabled" == "False" ]; then
2929
echo "********* FWTS is disabled in config file**************"
3030
else
3131
mkdir -p /mnt/acs_results/fwts
32-
echo "SystemReady band ACS v3.1.1 RC-final" > /mnt/acs_results/fwts/FWTSResults.log
32+
echo "SystemReady band ACS v3.1.1" > /mnt/acs_results/fwts/FWTSResults.log
3333
if [ "$automation_enabled" == "False" ]; then
3434
fwts -r stdout -q --uefi-set-var-multiple=1 --uefi-get-mn-count-multiple=1 --sbbr esrt uefibootpath aest cedt slit srat hmat pcct pdtt bgrt bert einj erst hest sdei nfit iort mpam ibft ras2 >> /mnt/acs_results/fwts/FWTSResults.log
3535
else

common/linux_scripts/init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ insmod /lib/modules/cppc_cpufreq.ko
5353

5454
sleep 5
5555

56-
SR_VERSION="SystemReady band ACS v3.1.1 RC-final"
56+
SR_VERSION="SystemReady band ACS v3.1.1"
5757

5858
#Skip running of ACS Tests if the grub option is added
5959
ADDITIONAL_CMD_OPTION="";

common/linux_scripts/sbsa.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# @file
4-
# Copyright (c) 2021-2025, Arm Limited or its affiliates. All rights reserved.
4+
# Copyright (c) 2021-2026, Arm Limited or its affiliates. All rights reserved.
55
# SPDX-License-Identifier : Apache-2.0
66

77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -30,7 +30,7 @@ if [ "$automation_enabled" == "True" ] && [ "$sbsa_enabled" == "False" ]; then
3030
else
3131
if [ -f /lib/modules/sbsa_acs.ko ]; then
3232
insmod /lib/modules/sbsa_acs.ko
33-
echo "SystemReady band ACS v3.1.1 RC-final" > /mnt/acs_results/linux/SbsaResultsApp.log
33+
echo "SystemReady band ACS v3.1.1" > /mnt/acs_results/linux/SbsaResultsApp.log
3434
if [ "$automation_enabled" == "False" ]; then
3535
/bin/sbsa --skip-dp-nic-ms >> /mnt/acs_results/linux/SbsaResultsApp.log
3636
else

common/linux_scripts/secure_init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if [ -f /bin/bbsr_fwts_tests.ini ]; then
8282
echo "**************BBSR FWTS disabled in config file*******************"
8383
else
8484
echo "Test Executed are $test_list"
85-
echo "SystemReady band ACS v3.1.1 RC-final" > $RESULTS_DIR/bbsr/fwts/FWTSResults.log
85+
echo "SystemReady band ACS v3.1.1" > $RESULTS_DIR/bbsr/fwts/FWTSResults.log
8686
fwts `echo $test_list` -f -r stdout >> $RESULTS_DIR/bbsr/fwts/FWTSResults.log
8787
fi
8888
fi

0 commit comments

Comments
 (0)