Skip to content
Closed
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
2 changes: 1 addition & 1 deletion common/config/bbr_source.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


#Cross compiler tools from https://releases.linaro.org/components/toolchain/binaries
GCC_TOOLS_VERSION=13.2.rel1
GCC_TOOLS_VERSION=14.3.rel1

CROSS_COMPILER_URL=https://developer.arm.com/-/media/Files/downloads/gnu/${GCC_TOOLS_VERSION}/binrel/arm-gnu-toolchain-${GCC_TOOLS_VERSION}-x86_64-aarch64-none-linux-gnu.tar.xz

Expand Down
4 changes: 2 additions & 2 deletions common/scripts/get_source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ get_cross_compiler()
pushd $TOP_DIR/tools
wget $CROSS_COMPILER_URL --no-check-certificate
tar -xf arm-gnu-toolchain-${GCC_TOOLS_VERSION}-x86_64-${TAG}.tar.xz
mv arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-linux-gnu arm-gnu-toolchain-13.2.rel1-x86_64-aarch64-none-linux-gnu
rm arm-gnu-toolchain-${GCC_TOOLS_VERSION}-x86_64-${TAG}.tar.xz
# mv arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-linux-gnu arm-gnu-toolchain-13.2.rel1-x86_64-aarch64-none-linux-gnu
# rm arm-gnu-toolchain-${GCC_TOOLS_VERSION}-x86_64-${TAG}.tar.xz
popd
fi
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ BBTestMemoryMapTest (
Status = gtBS->HandleProtocol (
SupportHandle,
&gEfiStandardTestLibraryGuid,
&StandardLib
(VOID **) &StandardLib
);
if (EFI_ERROR (Status)) {
return Status;
Expand Down Expand Up @@ -310,7 +310,7 @@ BBTestAcpiTableTest (
Status = gtBS->HandleProtocol (
SupportHandle,
&gEfiStandardTestLibraryGuid,
&StandardLib
(VOID **)&StandardLib
);
if (EFI_ERROR (Status)) {
return Status;
Expand All @@ -321,7 +321,7 @@ BBTestAcpiTableTest (
//
Status = SctGetSystemConfigurationTable (
&gEfiAcpi20TableGuid,
&AcpiTable
(VOID **)&AcpiTable
);
if (EFI_ERROR (Status)){
StandardLib->RecordAssertion (
Expand Down Expand Up @@ -465,7 +465,7 @@ BBTestSmbiosTableTest (
Status = gtBS->HandleProtocol (
SupportHandle,
&gEfiStandardTestLibraryGuid,
&StandardLib
(VOID **)&StandardLib
);
if (EFI_ERROR (Status)) {
return Status;
Expand All @@ -476,7 +476,7 @@ BBTestSmbiosTableTest (
//
Status = SctGetSystemConfigurationTable (
&gEfiSmbios3TableGuid,
&SmbiosTable
(VOID **)&SmbiosTable
);
if (EFI_ERROR(Status)) {
StandardLib->RecordAssertion (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Module Name:
#include <AArch64/AArch64.h>
#include "Guid.h"
#include <Library/ArmLib.h>
#include <Library/BaseMemoryLib.h>
#include "SctLib.h"
#include "SysEnvConfigBBTestFunction.h"
#include "SysEnvConfigBBTestMain.h"
Expand Down