blob: d4f585fed89f0bb959b042dbe2438c511773b0df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# SPDX-License-Identifier: BSD-3-Clause
ifeq ($(CONFIG_SOC_AMD_CEZANNE),y)
bootblock-y += bootblock.c
romstage-y += romstage.c
ramstage-y += chip.c
CPPFLAGS_common += -I$(src)/soc/amd/cezanne/include
endif
|