diff options
author | Raptor Engineering Development Team <support@raptorengineering.com> | 2020-01-12 00:57:19 +0000 |
---|---|---|
committer | Raptor Engineering Development Team <support@raptorengineering.com> | 2020-02-19 20:15:52 +0000 |
commit | a2ddbf3150e2c02ccc904b25d6650c9932a8a841 (patch) | |
tree | b2ddb4a274cf74df0dac360555472fc59cec3a20 /src | |
parent | 2992d2f67c5194bf3e8f4dee33638e89554fcff1 (diff) | |
download | talos-hostboot-07-25-2019.tar.gz talos-hostboot-07-25-2019.zip |
Only attempt to parse MEMD files that end in a *.*vpd suffix07-25-2019
Diffstat (limited to 'src')
-rwxr-xr-x | src/build/buildpnor/memd_creation.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build/buildpnor/memd_creation.pl b/src/build/buildpnor/memd_creation.pl index c4f551b03..b33981ad6 100755 --- a/src/build/buildpnor/memd_creation.pl +++ b/src/build/buildpnor/memd_creation.pl @@ -66,7 +66,7 @@ pod2usage(-verbose => 2) if $man; if($memd_dir) { print "Reading files from $memd_dir\n"; - @memd_files = glob($memd_dir . '/*'); + @memd_files = glob($memd_dir . '/*vpd'); } elsif(@memd_files) { |