diff options
author | Marty Gloff <mgloff@us.ibm.com> | 2017-03-08 15:47:05 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-03-21 15:53:53 -0400 |
commit | 38f35059b8632d2c7f8a2fa318fb0aaefd9b3229 (patch) | |
tree | 507a34cccd3c5ae6ee890030a9d2fee683d07907 /src/usr/sbeio/runtime/makefile | |
parent | afd8387b9c5f1583046820aba9a632bb4acaf767 (diff) | |
download | talos-hostboot-38f35059b8632d2c7f8a2fa318fb0aaefd9b3229.tar.gz talos-hostboot-38f35059b8632d2c7f8a2fa318fb0aaefd9b3229.zip |
SBE message passing interface - call of HBRT process SBE message
Add the new Host interface for SBE message passing.
Change-Id: I220a864a072bcc60cc873cde243a28cc899e2722
RTC:170759
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/37694
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/sbeio/runtime/makefile')
-rw-r--r-- | src/usr/sbeio/runtime/makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/usr/sbeio/runtime/makefile b/src/usr/sbeio/runtime/makefile new file mode 100644 index 000000000..c3a1b24c6 --- /dev/null +++ b/src/usr/sbeio/runtime/makefile @@ -0,0 +1,39 @@ +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. +# +# $Source: src/usr/sbeio/runtime/makefile $ +# +# OpenPOWER HostBoot Project +# +# Contributors Listed Below - COPYRIGHT 2017 +# [+] International Business Machines Corp. +# +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. See the License for the specific language governing +# permissions and limitations under the License. +# +# IBM_PROLOG_END_TAG + +HOSTBOOT_RUNTIME = 1 + +ROOTPATH = ../../../.. +VPATH += ../ + +MODULE = sbeio_rt + +## Objects unique to HBRT +OBJS += rt_sbeio.o + +## Objects common to HBRT and HB IPL +#include ../sbeio.mk + +include ${ROOTPATH}/config.mk |