c4b70276ed
Change-Id: I8a207e30a73d10fe67c0474ff11324ae99e2cec6 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41360 Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
18 lines
540 B
Makefile
18 lines
540 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
ifeq ($(CONFIG_AHCI_BIOS),y)
|
|
stripped_ahcibios_id = $(call strip_quotes,$(CONFIG_AHCI_BIOS_ID))
|
|
cbfs-files-$(CONFIG_AHCI_BIOS) += pci$(stripped_ahcibios_id).rom
|
|
pci$(stripped_ahcibios_id).rom-file := $(call strip_quotes,$(CONFIG_AHCI_BIOS_FILE))
|
|
pci$(stripped_ahcibios_id).rom-type := optionrom
|
|
endif
|
|
|
|
bootblock-y += bootblock.c
|
|
|
|
romstage-y += buildOpts.c
|
|
romstage-y += BiosCallOuts.c
|
|
romstage-y += OemCustomize.c
|
|
|
|
ramstage-y += buildOpts.c
|
|
ramstage-y += BiosCallOuts.c
|
|
ramstage-y += OemCustomize.c
|