diff options
author | Zane Shelley <zshelle@us.ibm.com> | 2016-03-03 16:49:00 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-03-10 00:13:04 -0500 |
commit | 3f524351a5c5dc782ab1246e25b26c069b1b7662 (patch) | |
tree | 95ef9f69fc148f9b91a97a5640d88f8dd9fd806b | |
parent | 77497c10e7cc115b76bebb060e24cea16a8acff8 (diff) | |
download | talos-hostboot-3f524351a5c5dc782ab1246e25b26c069b1b7662.tar.gz talos-hostboot-3f524351a5c5dc782ab1246e25b26c069b1b7662.zip |
PRD: Re-enable errl parser compilation of PRD code
Change-Id: Id1a5cd175620851b2bdb3d6e0fad95987ace580f
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/21686
Tested-by: Jenkins Server
Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com>
Reviewed-by: Benjamin J. Weisenbeck <bweisenb@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
-rwxr-xr-x | src/usr/errl/parser/genErrlParsers.pl | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/usr/errl/parser/genErrlParsers.pl b/src/usr/errl/parser/genErrlParsers.pl index 502397aba..4f87f5869 100755 --- a/src/usr/errl/parser/genErrlParsers.pl +++ b/src/usr/errl/parser/genErrlParsers.pl @@ -6,7 +6,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2013,2015 +# Contributors Listed Below - COPYRIGHT 2013,2016 # [+] Google Inc. # [+] International Business Machines Corp. # @@ -983,17 +983,15 @@ print OFILE "\#\n"; print OFILE "CFLAGS += -DPARSER\n\n"; print OFILE "EXPLIBS =\n\n"; -# TODO: RTC 135217 -# Disable PRD error log plugins until we enable compile of PRD. -#print OFILE "\#-------------------------------------------------------------\n"; -#print OFILE "\# Call PRD makefile for prdf plugins\n"; -#print OFILE "\#-------------------------------------------------------------\n"; -#print OFILE ".if ( \$(CONTEXT) != \"x86.nfp\" )\n"; -#print OFILE "EXPLIB_SUBDIRS += prdf\n"; -#print OFILE "EXPSHLIB_SUBDIRS += prdf\n"; -#print OFILE ".else\n"; -#print OFILE "EXPLIB_SUBDIRS += prdf\n"; -#print OFILE ".endif\n"; +print OFILE "\#-------------------------------------------------------------\n"; +print OFILE "\# Call PRD makefile for prdf plugins\n"; +print OFILE "\#-------------------------------------------------------------\n"; +print OFILE ".if ( \$(CONTEXT) != \"x86.nfp\" )\n"; +print OFILE "EXPLIB_SUBDIRS += prdf\n"; +print OFILE "EXPSHLIB_SUBDIRS += prdf\n"; +print OFILE ".else\n"; +print OFILE "EXPLIB_SUBDIRS += prdf\n"; +print OFILE ".endif\n"; print OFILE "\#-------------------------------------------------------------\n"; print OFILE "\# SRC Parsers\n"; |