diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2015-12-11 17:04:13 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-12-14 15:20:42 -0600 |
commit | 4ea62ca340c8da822515bb4cac7d9bda3c19efa8 (patch) | |
tree | 1bfcfae029ce2207cde355fea87194e2986f4866 | |
parent | 22d7cce6224a5eaab3bc7dfc192f0b569d0c9a23 (diff) | |
download | talos-hostboot-4ea62ca340c8da822515bb4cac7d9bda3c19efa8.tar.gz talos-hostboot-4ea62ca340c8da822515bb4cac7d9bda3c19efa8.zip |
Resolve FSP build issues from P9 work.
- Disable PRDF error log parser since it is not currently generated
in hostboot.
- Disable HWPF error log parser since it is deprecated and doesn't
compile.
Change-Id: Ic3639fadd345ad816d403a09881a35b761bf3376
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/22709
Tested-by: Jenkins Server
Reviewed-by: Elizabeth Liner <eliner@us.ibm.com>
Reviewed-by: WILLIAM G. HOFFA <wghoffa@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
-rwxr-xr-x | src/usr/errl/parser/genErrlParsers.pl | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/src/usr/errl/parser/genErrlParsers.pl b/src/usr/errl/parser/genErrlParsers.pl index fde5799a5..502397aba 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,2014 +# Contributors Listed Below - COPYRIGHT 2013,2015 # [+] Google Inc. # [+] International Business Machines Corp. # @@ -983,15 +983,17 @@ print OFILE "\#\n"; print OFILE "CFLAGS += -DPARSER\n\n"; print OFILE "EXPLIBS =\n\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"; +# 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 "\# SRC Parsers\n"; @@ -1228,7 +1230,9 @@ sub getPluginDirsToParse if ($dirEntryPath =~ /plugins/) { # Found plugins directory - push(@pluginDirsToParse, $dirEntryPath); + push(@pluginDirsToParse, $dirEntryPath) + if (!($dirEntryPath =~ /hwpf/)); + # TODO RTC 124673 disable fapi1 } else { |