diff options
| author | Nick Bofferding <bofferdn@us.ibm.com> | 2016-08-23 01:36:12 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-12-07 23:32:36 -0500 |
| commit | 1ceafcd419b831ca9e7fac5c7ed96b58157a0bcd (patch) | |
| tree | 6dba9b65506b794890b32ab3c298ba47c6d0b9fd | |
| parent | be59485a8fe6dd222a8dd22fc381d4559c95ce33 (diff) | |
| download | talos-hostboot-1ceafcd419b831ca9e7fac5c7ed96b58157a0bcd.tar.gz talos-hostboot-1ceafcd419b831ca9e7fac5c7ed96b58157a0bcd.zip | |
Move user details attribute code to extended image
Change-Id: I79dbac09a6f3945395cb397c22eb28612f5537a4
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28650
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-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>
Reviewed-by: Matthew A. Ploetz <maploetz@us.ibm.com>
Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/32839
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Reviewed-by: Marshall J. Wilks <mjwilks@us.ibm.com>
| -rw-r--r-- | src/usr/errl/errl.mk | 3 | ||||
| -rw-r--r-- | src/usr/errl/makefile | 4 | ||||
| -rw-r--r-- | src/usr/targeting/makefile | 4 | ||||
| -rw-r--r-- | src/usr/targeting/runtime/makefile | 4 |
4 files changed, 10 insertions, 5 deletions
diff --git a/src/usr/errl/errl.mk b/src/usr/errl/errl.mk index 91ce34b0e..c75263dc1 100644 --- a/src/usr/errl/errl.mk +++ b/src/usr/errl/errl.mk @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2015 +# Contributors Listed Below - COPYRIGHT 2015,2016 # [+] International Business Machines Corp. # # @@ -35,7 +35,6 @@ OBJS += backtrace.o OBJS += errludtarget.o OBJS += errludstring.o OBJS += errludbacktrace.o -OBJS += errludattribute.o OBJS += errludlogregister.o OBJS += errludcallout.o OBJS += errlmanager_common.o diff --git a/src/usr/errl/makefile b/src/usr/errl/makefile index d942214f7..d0f0f8967 100644 --- a/src/usr/errl/makefile +++ b/src/usr/errl/makefile @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2011,2015 +# Contributors Listed Below - COPYRIGHT 2011,2016 # [+] International Business Machines Corp. # # @@ -37,6 +37,6 @@ SUBDIRS += runtime.d include ${ROOTPATH}/config.mk -# to find errludattribute.[CH] and errludtarget.[CH] - they are generated +# to find errludtarget.[CH] - they are generated # by src/usr/targeting/common/xmltohb/xmltohb.pl vpath %.C ${GENDIR} diff --git a/src/usr/targeting/makefile b/src/usr/targeting/makefile index 61dfb0a4d..d91fb139f 100644 --- a/src/usr/targeting/makefile +++ b/src/usr/targeting/makefile @@ -50,7 +50,7 @@ HOSTBOOT_SPECIFIC_OBJS += ${ATTR_RP_OBJS} HOSTBOOT_SPECIFIC_OBJS += ${DEBUG_OBJS} HOSTBOOT_SPECIFIC_OBJS += ${HOSTBOOT_RT_IPL_COMMON_OBJS} HOSTBOOT_SPECIFIC_OBJS += namedtarget.o - +HOSTBOOT_SPECIFIC_OBJS += errludattribute.o #debug : # @echo COMMON_TARGETING_REL_PATH = ${COMMON_TARGETING_REL_PATH} @@ -69,4 +69,6 @@ SUBDIRS += attroverride.d include ${ROOTPATH}/config.mk +# To find errludattribute.[CH], etc. They are generated +# by src/usr/targeting/common/xmltohb/xmltohb.pl vpath %.C ${GENDIR} diff --git a/src/usr/targeting/runtime/makefile b/src/usr/targeting/runtime/makefile index 7d311a030..c5349952b 100644 --- a/src/usr/targeting/runtime/makefile +++ b/src/usr/targeting/runtime/makefile @@ -38,10 +38,14 @@ HOSTBOOT_RUNTIME_SPECIFIC_OBJS += start_rt.o HOSTBOOT_RUNTIME_SPECIFIC_OBJS += targplatutil.o HOSTBOOT_RUNTIME_SPECIFIC_OBJS += rt_targeting.o HOSTBOOT_RUNTIME_SPECIFIC_OBJS += attrPlatOverride_rt.o +HOSTBOOT_RUNTIME_SPECIFIC_OBJS += errludattribute.o OBJS += ${COMMON_TARGETING_OBJS} OBJS += ${HOSTBOOT_RT_IPL_COMMON_OBJS} OBJS += ${HOSTBOOT_RUNTIME_SPECIFIC_OBJS} include $(ROOTPATH)/config.mk + +# To find errludattribute.[CH], etc. They are generated +# by src/usr/targeting/common/xmltohb/xmltohb.pl vpath %.C ${GENDIR} |

