diff options
author | Mike Jones <mjjones@us.ibm.com> | 2014-03-04 16:56:06 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-03-07 12:33:59 -0600 |
commit | 0084d0655c9f11b97f8d20a5a33537aeea271958 (patch) | |
tree | 8cce7a6cf9cca7656be5e15b54d7ada7c6c68967 /src/build/tools/hwp_id.pl | |
parent | 814f44ddaa4614172ffdc41d297291cc08be31ab (diff) | |
download | talos-hostboot-0084d0655c9f11b97f8d20a5a33537aeea271958.tar.gz talos-hostboot-0084d0655c9f11b97f8d20a5a33537aeea271958.zip |
Generated hwp_id.html file does not show all necessary files
Change-Id: I54ddd117dc18efa8bb99420352e0897bd27949b6
RTC: 98928
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9298
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Tested-by: Jenkins Server
Reviewed-by: William H. Schwartz <whs@us.ibm.com>
Reviewed-by: STEPHEN M. CPREK <smcprek@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/tools/hwp_id.pl')
-rwxr-xr-x | src/build/tools/hwp_id.pl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/build/tools/hwp_id.pl b/src/build/tools/hwp_id.pl index f63e4cb9e..24882aeea 100755 --- a/src/build/tools/hwp_id.pl +++ b/src/build/tools/hwp_id.pl @@ -6,7 +6,7 @@ # # IBM CONFIDENTIAL # -# COPYRIGHT International Business Machines Corp. 2012,2013 +# COPYRIGHT International Business Machines Corp. 2012,2014 # # p1 # @@ -48,7 +48,8 @@ use constant SHOW_ONLYMISS => 0x40; # directories that we'll check for files: my @dirList = ( - "src/usr/hwpf/hwp", # hostboot + "src/usr/hwpf", # hostboot + "src/include/usr/hwpf", # hostboot "src/usr/pore/poreve/model", # hostboot "src/hwsv/server/hwpf/hwp", # fsp, should be full tree "src/base.pgm/HostServices/hwpf/hwp", # hostservices @@ -406,7 +407,7 @@ sub findIdVersion ################################################################################ # # checkDirs - find hwp files that should contain $Id: -# filetypes .C .c .H .h .xml .define .initfile .attributes +# filetypes .C .c .H .h .xml .define .initfile .attributes .pl # and prints out their filename and version from the $Id: string. # This recursively searches the input directory passed in for all files. # @@ -438,7 +439,8 @@ sub checkDirs ($l_entry =~ /\.xml$/) || ($l_entry =~ /\.define$/) || ($l_entry =~ /\.attributes$/) || - ($l_entry =~ /\.initfile$/)) + ($l_entry =~ /\.initfile$/) || + ($l_entry =~ /\.pl$/)) { findIdVersion($full_path); } |