Skip to content
Merged
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
4 changes: 2 additions & 2 deletions SystemReady-band/build-scripts/build-all.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

# @file
# Copyright (c) 2021-2025, Arm Limited or its affiliates. All rights reserved.
# Copyright (c) 2021-2026, 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 @@ -33,7 +33,7 @@ source ./build-scripts/build-uefi.sh $@
source ./build-scripts/build-bsaefi.sh $@
source ./build-scripts/build-sbsaefi.sh $@
source ./build-scripts/build-sct.sh SBBR $2
source ./build-scripts/build-uefi-apps.sh $@
source ./build-scripts/build-uefi-apps.sh SBBR $PACKAGE
source ./build-scripts/build-linux.sh $@
source ./build-scripts/build-linux-bsa.sh $@
source ./build-scripts/build-grub.sh $@
Expand Down
1 change: 1 addition & 0 deletions SystemReady-band/build-scripts/make_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ create_fatpart ()
mcopy -i $fatpart_name ${TOP_DIR}/bbsr-keys/*.auth ::/acs_tests/bbsr-keys

mcopy -i $fatpart_name ${UEFI_APPS_PATH}/CapsuleApp.efi ::/acs_tests/app
mcopy -i $fatpart_name ${UEFI_APPS_PATH}/PcieOptionRomArchAudit.efi ::/acs_tests/app
mcopy -i $fatpart_name $OUTDIR/Parser.efi ::/acs_tests/parser
mcopy -i $fatpart_name $CONFIG_PARSER_FILE ::/acs_tests/parser
mcopy -i $fatpart_name $CONFIG_PARSER_PYTHON_FILE ::/acs_tests/parser
Expand Down
6 changes: 6 additions & 0 deletions common/uefi_scripts/startup.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,12 @@ for %p in 0 1 2 3 4 5 6 7 8 9 A B C D E F then
echo " "
echo "Running debug dump"
FS%p:\acs_tests\debug\debug_dump.nsh

# Run the Standalone PCIe option ROM architecture audit app
if exist FS%p:\acs_tests\app\PcieOptionRomArchAudit.efi then
echo "Running PcieOptionRomArchAudit standalone app"
FS%p:\acs_tests\app\PcieOptionRomArchAudit.efi
endif
goto DoneDebug
endif
endfor
Expand Down
Loading