diff options
author | Matt Derksen <v2cibmd@us.ibm.com> | 2016-08-12 14:38:35 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-08-22 18:07:50 -0400 |
commit | 6ccd4232d54ecb909f97dffbb98f00b5977c5a53 (patch) | |
tree | e5d15fc0d75f511d64738477f4d790c431544b4e /src/usr/isteps/istep10/makefile | |
parent | 19eb5718ee472094163e55b4f02cc3d019ae2215 (diff) | |
download | talos-hostboot-6ccd4232d54ecb909f97dffbb98f00b5977c5a53.tar.gz talos-hostboot-6ccd4232d54ecb909f97dffbb98f00b5977c5a53.zip |
Enable p9_build_smp hardware procedure call in call_proc_build_smp
Change-Id: Icb710fce7f82f6f079982d975132543e72d5f7d8
RTC:158758
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28239
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/isteps/istep10/makefile')
-rw-r--r-- | src/usr/isteps/istep10/makefile | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/usr/isteps/istep10/makefile b/src/usr/isteps/istep10/makefile index 2cc0c171c..12616aed1 100644 --- a/src/usr/isteps/istep10/makefile +++ b/src/usr/isteps/istep10/makefile @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2015 +# Contributors Listed Below - COPYRIGHT 2015,2016 # [+] International Business Machines Corp. # # @@ -25,8 +25,31 @@ ROOTPATH = ../../../.. MODULE = istep10 +NEST_HWP_PATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/nest +INITFILES_HWP_PATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/initfiles + + +EXTRAINCDIR += ${ROOTPATH}/src/usr/isteps/ +EXTRAINCDIR += ${ROOTPATH}/src/include/usr/fapi2/ +EXTRAINCDIR += ${ROOTPATH}/src/import/hwpf/fapi2/include/ +EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/utils/imageProcs/ +EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/common/include/ +EXTRAINCDIR += ${NEST_HWP_PATH} +EXTRAINCDIR += ${INITFILES_HWP_PATH} + OBJS += call_proc_build_smp.o OBJS += call_host_slave_sbe_update.o OBJS += call_host_update_redundant_tpm.o +VPATH += ${NEST_HWP_PATH} +VPATH += ${INITFILES_HWP_PATH} + +#Required include before all the procedure.mk are included +include ${ROOTPATH}/procedure.rules.mk + +#Include all the procedure makefiles +include $(NEST_HWP_PATH)/p9_build_smp.mk +include ${INITFILES_HWP_PATH}/p9_fbc_ab_hp_scom.mk +include ${INITFILES_HWP_PATH}/p9_fbc_cd_hp_scom.mk + include ${ROOTPATH}/config.mk |