diff options
| author | Richard J. Knight <rjknight@us.ibm.com> | 2018-01-10 23:08:06 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-03-02 11:52:56 -0500 |
| commit | 221f056134993b08c809d6d3782a70e1c99fa17c (patch) | |
| tree | ce7a2a380a43d3c95abf13cd619a0d045fc4717a /src/usr/sbe/makefile | |
| parent | 13dd75dd4dc3b83f32b90f375c204ae43ca3948a (diff) | |
| download | talos-hostboot-221f056134993b08c809d6d3782a70e1c99fa17c.tar.gz talos-hostboot-221f056134993b08c809d6d3782a70e1c99fa17c.zip | |
Introduce new shared library for image processing fucntions
-Moved xip functions from pm lib into libimageprocs.so
-Updated DEPLIBS to include new libimageprocs.so for istep
libs.
Change-Id: I9e1c90643448146f6e8ef953106c0eea521e35f0
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/51754
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
CI-Ready: Thi N. Tran <thi@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/sbe/makefile')
| -rw-r--r-- | src/usr/sbe/makefile | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/src/usr/sbe/makefile b/src/usr/sbe/makefile index a8abf2d85..f1e4b63fb 100644 --- a/src/usr/sbe/makefile +++ b/src/usr/sbe/makefile @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2013,2017 +# Contributors Listed Below - COPYRIGHT 2013,2018 # [+] International Business Machines Corp. # # @@ -28,6 +28,7 @@ MODULE = sbe ## support for fapi2 EXTRAINCDIR += ${ROOTPATH}/src/import/hwpf/fapi2/include/ EXTRAINCDIR += ${ROOTPATH}/src/include/usr/fapi2/ +EXTRAINCDIR += ${ROOTPATH}/obj/genfiles/ ## pointer to common HWP files EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/common/include/ @@ -36,6 +37,7 @@ EXTRAINCDIR += ${ROOTPATH}/src/import/chips/centaur/utils/imageProcs/ EXTRAINCDIR += ${ROOTPATH}/src/import/chips/common/utils/imageProcs/ EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/lib/ EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/utils/stopreg/ +EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/ffdc HWP_CUSTOMIZE_PATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/customize EXTRAINCDIR += ${HWP_CUSTOMIZE_PATH}/ HWP_ACCESSORS_PATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/accessors @@ -50,23 +52,5 @@ OBJS += sbe_update.o SUBDIRS += test.d -## NOTE: add a new directory onto the vpaths when you add a new HWP -VPATH += ${HWP_CUSTOMIZE_PATH} ${HWP_ACCESSORS_PATH} ${HWP_XIP_PATH} -VPATH += ${UTILS_PATH} ${CEN_UTILS_PATH} ${COMMON_UTILS_PATH} - -include ${ROOTPATH}/procedure.rules.mk - -include ${UTILS_PATH}/p9_dd_container.mk -include ${HWP_CUSTOMIZE_PATH}/p9_xip_customize.mk -include ${HWP_CUSTOMIZE_PATH}/p9_xip_section_append.mk -include ${HWP_ACCESSORS_PATH}/p9_get_mvpd_ring.mk -include ${HWP_ACCESSORS_PATH}/p9_mvpd_ring_funcs.mk -include ${HWP_XIP_PATH}/p9_xip_image.mk -include ${UTILS_PATH}/p9_ring_identification.mk -include ${UTILS_PATH}/p9_ringId.mk -include ${CEN_UTILS_PATH}/cen_ringId.mk -include ${COMMON_UTILS_PATH}/common_ringId.mk -include ${UTILS_PATH}/p9_scan_compression.mk -include ${UTILS_PATH}/p9_tor.mk include ${ROOTPATH}/config.mk |

