blob: e7d0aea560d016ec7af2a16ffac23811475cf589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# SPDX-License-Identifier: BSD-3-Clause
ifeq ($(CONFIG_SOC_AMD_CEZANNE),y)
# Beware that all-y also adds the compilation unit to verstage on PSP
all-y += config.c
bootblock-y += bootblock.c
bootblock-y += early_fch.c
romstage-y += romstage.c
ramstage-y += chip.c
CPPFLAGS_common += -I$(src)/soc/amd/cezanne/include
endif
|