apollolake: relocate fsp header files to vendorcode
FSP header files should be located in vendorcode, not soc directory. This patch includes changes any references to the old location to the new location. Change-Id: I44270392617418ec1b9dec15ee187863f2503341 Signed-off-by: Brandon Breitenstein <brandon.breitenstein@intel.com> Reviewed-on: https://review.coreboot.org/16310 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
c31ba0ef52
commit
eb2e688a8e
|
@ -22,8 +22,8 @@
|
|||
* FSP implementations for different chipsets.
|
||||
*/
|
||||
#include <Base.h>
|
||||
#include <soc/fsp/FspmUpd.h>
|
||||
#include <soc/fsp/FspsUpd.h>
|
||||
#include <FspmUpd.h>
|
||||
#include <FspsUpd.h>
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
|
|
|
@ -93,6 +93,7 @@ verstage-y += reset.c
|
|||
verstage-y += spi.c
|
||||
|
||||
CPPFLAGS_common += -I$(src)/soc/intel/apollolake/include
|
||||
CPPFLAGS_common += -I$(src)/vendorcode/intel/fsp/fsp2_0/apollolake
|
||||
|
||||
# Since FSP-M runs in CAR we need to relocate it to a specific address
|
||||
$(CONFIG_FSP_M_CBFS)-options := -b $(CONFIG_FSP_M_ADDR)
|
||||
|
|
Loading…
Reference in New Issue