diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2012-05-23 14:10:56 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-07-02 13:38:19 -0500 |
commit | e8797499ac1eb0f30e457815b0304f9629d4bcea (patch) | |
tree | 44d33bd4bf96751b9551940745d8efe579600476 /src/usr/hwpf/hwp/thread_activate/makefile | |
parent | 3ab395218609373c345697bd0160755588125775 (diff) | |
download | talos-hostboot-e8797499ac1eb0f30e457815b0304f9629d4bcea.tar.gz talos-hostboot-e8797499ac1eb0f30e457815b0304f9629d4bcea.zip |
Start the rest of the threads on the master core
Uses the scom from proc_thread_control HWP to start all of the
threads that aren't started yet on the master core.
Change-Id: I93efba6ebebbf9d286a399fc58fa437b30e830b1
RTC: 37008
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1242
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/hwp/thread_activate/makefile')
-rw-r--r-- | src/usr/hwpf/hwp/thread_activate/makefile | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/usr/hwpf/hwp/thread_activate/makefile b/src/usr/hwpf/hwp/thread_activate/makefile new file mode 100644 index 000000000..e76e6cb94 --- /dev/null +++ b/src/usr/hwpf/hwp/thread_activate/makefile @@ -0,0 +1,55 @@ +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. +# +# $Source: src/usr/hwpf/hwp/thread_activate/makefile $ +# +# IBM CONFIDENTIAL +# +# COPYRIGHT International Business Machines Corp. 2012 +# +# p1 +# +# Object Code Only (OCO) source materials +# Licensed Internal Code Source Materials +# IBM HostBoot Licensed Internal Code +# +# The source code for this program is not published or other- +# wise divested of its trade secrets, irrespective of what has +# been deposited with the U.S. Copyright Office. +# +# Origin: 30 +# +# IBM_PROLOG_END_TAG +ROOTPATH = ../../../../.. + +MODULE = thread_activate + +## support for Targeting and fapi +EXTRAINCDIR += ${ROOTPATH}/src/include/usr/ecmddatabuffer +EXTRAINCDIR += ${ROOTPATH}/src/include/usr/hwpf/fapi +EXTRAINCDIR += ${ROOTPATH}/src/include/usr/hwpf/plat +EXTRAINCDIR += ${ROOTPATH}/src/include/usr/hwpf/hwp + +## pointer to common HWP files +EXTRAINCDIR += ${ROOTPATH}/src/usr/hwpf/hwp/include + +## NOTE: add the base istep dir here. +EXTRAINCDIR += ${ROOTPATH}/src/usr/hwpf/hwp/thread_activate + +## Include sub dirs +## NOTE: add a new EXTRAINCDIR when you add a new HWP +## EXAMPLE: +## EXTRAINCDIR += ${ROOTPATH}/src/usr/hwpf/hwp/thread_activate/<HWP_dir> + + +## NOTE: add new object files when you add a new HWP +OBJS = thread_activate.o + + +## NOTE: add a new directory onto the vpaths when you add a new HWP +## EXAMPLE: +# VPATH += ${ROOTPATH}/src/usr/hwpf/hwp/thread_activate/<HWP_dir> + + +include ${ROOTPATH}/config.mk + |