blob: bdbd59ba801b255396c569a5fed04b6df179deb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# This file is part of the coreboot project.
#
#
# SPDX-License-Identifier: GPL-2.0-only
bootblock-y += bootblock.c
romstage-y += BiosCallOuts.c
romstage-y += OemCustomize.c
romstage-y += gpio_ftns.c
ramstage-y += BiosCallOuts.c
ramstage-y += OemCustomize.c
ramstage-y += gpio_ftns.c
# Order of names in SPD_SOURCES is important!
SPD_SOURCES = HYNIX-2G-1333
SPD_SOURCES += HYNIX-4G-1333-ECC
subdirs-y += variants/$(VARIANT_DIR)
|