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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @file
* Copyright (c) 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");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -17,6 +17,9 @@

#include "acs.h"

/*
* Shared bare-metal ACS image layout used by all firmware payloads.
*/
IMAGE_BASE = PLATFORM_HOST_IMAGE_BASE;
OUTPUT_FORMAT(elf64-littleaarch64)
OUTPUT_ARCH(aarch64)
Expand Down
81 changes: 0 additions & 81 deletions tools/cmake/infra/bsa_image.ld.S

This file was deleted.

81 changes: 0 additions & 81 deletions tools/cmake/infra/sbsa_image.ld.S

This file was deleted.

2 changes: 1 addition & 1 deletion tools/cmake/toolchain/linker.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ set(GNUARM_OBJDUMP_FLAGS "-dSx")
set(GNUARM_OBJCOPY_FLAGS "-Obinary")

function (create_executable EXE_NAME OUTPUT_DIR TEST)
set(SCATTER_INPUT_FILE "${ROOT_DIR}/tools/cmake/infra/${EXE_NAME}_image.ld.S")
set(SCATTER_INPUT_FILE "${ROOT_DIR}/tools/cmake/infra/acs_bm_image.ld.S")
set(SCATTER_OUTPUT_FILE "${OUTPUT_DIR}/${EXE_NAME}_image.ld")

add_custom_command(OUTPUT CPP-LD--${EXE_NAME}${TEST}
Expand Down
Loading