We need to make most things non-static so that the code builds. Also, we need to update ibexpeak as well, because it borrows files from bd82x6x. Tested on Asus P8Z77-V LX2, still boots. Change-Id: I17e561abf2378632f72d0aa9f0057cb1bee23514 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42019 Reviewed-by: Evgeny Zinoviev <me@ch1p.io> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
42 lines
905 B
Makefile
42 lines
905 B
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_C216)$(CONFIG_SOUTHBRIDGE_INTEL_BD82X6X),y)
|
|
|
|
bootblock-y += bootblock.c
|
|
bootblock-y += early_pch.c
|
|
|
|
ramstage-y += pch.c
|
|
ramstage-y += azalia.c
|
|
ramstage-y += fadt.c
|
|
ramstage-y += lpc.c
|
|
ramstage-y += pci.c
|
|
ramstage-y += pcie.c
|
|
ramstage-y += sata.c
|
|
ramstage-y += usb_ehci.c
|
|
ramstage-y += usb_xhci.c
|
|
ramstage-y += me.c
|
|
ramstage-y += me_8.x.c
|
|
ramstage-y += me_common.c
|
|
ramstage-y += smbus.c
|
|
ramstage-y += ../common/pciehp.c
|
|
|
|
ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
|
|
|
|
ramstage-y += me_status.c
|
|
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
|
|
|
smm-y += smihandler.c me.c me_8.x.c pch.c me_common.c
|
|
|
|
romstage-y += me_status.c
|
|
romstage-y += early_rcba.c
|
|
romstage-y += early_pch.c
|
|
|
|
ifeq ($(CONFIG_USE_NATIVE_RAMINIT),y)
|
|
romstage-y += early_thermal.c early_me.c early_usb.c
|
|
else
|
|
romstage-y += early_me_mrc.c early_usb_mrc.c
|
|
endif
|
|
|
|
endif
|