Ac6 Training Logo
Training Consulting Tools
xref: /trusted-firmware-a-latest/bl1/bl1.mk
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7BL1_SOURCES		+=	bl1/${ARCH}/bl1_arch_setup.c		\
8				bl1/${ARCH}/bl1_context_mgmt.c		\
9				bl1/${ARCH}/bl1_entrypoint.S		\
10				bl1/${ARCH}/bl1_exceptions.S		\
11				bl1/bl1_main.c				\
12				lib/cpus/${ARCH}/cpu_helpers.S		\
13				lib/cpus/errata_report.c		\
14				lib/el3_runtime/${ARCH}/context_mgmt.c	\
15				plat/common/plat_bl1_common.c		\
16				plat/common/${ARCH}/platform_up_stack.S \
17				${MBEDTLS_SOURCES}
18
19ifeq (${ARCH},aarch64)
20BL1_SOURCES		+=	lib/cpus/aarch64/dsu_helpers.S		\
21				lib/el3_runtime/aarch64/context.S
22endif
23
24ifeq (${TRUSTED_BOARD_BOOT},1)
25BL1_SOURCES		+=	bl1/bl1_fwu.c
26endif
27
28ifeq (${ENABLE_PMF},1)
29BL1_SOURCES		+=	lib/pmf/pmf_main.c
30endif
31
32ifneq ($(findstring gcc,$(notdir $(LD))),)
33        BL1_LDFLAGS	+=	-Wl,--sort-section=alignment
34else ifneq ($(findstring ld,$(notdir $(LD))),)
35        BL1_LDFLAGS	+=	--sort-section=alignment
36endif
37
38BL1_DEFAULT_LINKER_SCRIPT_SOURCE := bl1/bl1.ld.S
39

served by {OpenGrok

Last Index Update: Sat Oct 18 03:01:21 CEST 2025

CodEx Logo