blob: fbbf0449079bf6f6be4cf0b1780eda789affaa48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# SPDX-License-Identifier: GPL-2.0-only
ifeq ($(CONFIG_DRIVERS_AMD_PI),y)
romstage-y += romstage.c
romstage-y += mtrr_fixme.c
romstage-y += state_machine.c
ramstage-y += state_machine.c
bootblock-y += bootblock.c
bootblock-y += cache_as_ram.S
postcar-y += exit_car.S
romstage-y += def_callouts.c
romstage-y += eventlog.c
ramstage-y += def_callouts.c
ramstage-y += eventlog.c
ramstage-y += heapmanager.c
ramstage-y += acpi_tables.c
endif
|