Before the change to use vb2_api.h, coreboot needed to know where to find the vboot2 header files. Now those are all included by vb2_api.h, so coreboot doesn't need to know about firmware/2lib/include (and in fact, the 2lib directory is about to go away). BUG=chromium:423882 BRANCH=none TEST=emerge-veyron_pinky coreboot Original-Change-Id: I7f69ca9cf8d45c325219efceca0cb8d1340f7736 Original-Signed-off-by: Randall Spangler <rspangler@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/233223 Original-Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> (cherry picked from commit b4d4a2da1c8b5a5f8f8da51f009227d3a616b096) Signed-off-by: Aaron Durbin <adurbin@chromium.org> Change-Id: I4006f38835ea0f927142a8133bc24caaf2b7a214 Reviewed-on: http://review.coreboot.org/9447 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
56 lines
2.0 KiB
Makefile
56 lines
2.0 KiB
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; version 2 of the License.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program; if not, write to the Free Software
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
##
|
|
|
|
bootblock-y += chromeos.c
|
|
verstage-y += chromeos.c
|
|
romstage-y += chromeos.c
|
|
ramstage-y += chromeos.c
|
|
|
|
verstage-$(CONFIG_CHROMEOS_VBNV_CMOS) += vbnv_cmos.c
|
|
romstage-$(CONFIG_CHROMEOS_VBNV_CMOS) += vbnv_cmos.c
|
|
ramstage-$(CONFIG_CHROMEOS_VBNV_CMOS) += vbnv_cmos.c
|
|
verstage-$(CONFIG_CHROMEOS_VBNV_EC) += vbnv_ec.c
|
|
romstage-$(CONFIG_CHROMEOS_VBNV_EC) += vbnv_ec.c
|
|
ramstage-$(CONFIG_CHROMEOS_VBNV_EC) += vbnv_ec.c
|
|
verstage-$(CONFIG_CHROMEOS_VBNV_FLASH) += vbnv_flash.c
|
|
romstage-$(CONFIG_CHROMEOS_VBNV_FLASH) += vbnv_flash.c
|
|
ramstage-$(CONFIG_CHROMEOS_VBNV_FLASH) += vbnv_flash.c
|
|
|
|
romstage-$(CONFIG_ARCH_ROMSTAGE_X86_32) += vboot.c
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += gnvs.c
|
|
verstage-y += fmap.c
|
|
romstage-y += fmap.c
|
|
ramstage-y += fmap.c
|
|
ramstage-$(CONFIG_CHROMEOS_RAMOOPS) += ramoops.c
|
|
smm-y += fmap.c
|
|
romstage-y += vpd_decode.c cros_vpd.c
|
|
ramstage-y += vpd_decode.c cros_vpd.c vpd_mac.c vpd_calibration.c
|
|
|
|
ifeq ($(MOCK_TPM),1)
|
|
CFLAGS_common += -DMOCK_TPM=1
|
|
else
|
|
CFLAGS_common += -DMOCK_TPM=0
|
|
endif
|
|
|
|
VB_SOURCE := vboot_reference
|
|
subdirs-$(CONFIG_VBOOT_VERIFY_FIRMWARE) += vboot1
|
|
subdirs-$(CONFIG_VBOOT2_VERIFY_FIRMWARE) += vboot2
|
|
CPPFLAGS_common += -I$(VB_SOURCE)/firmware/include
|