diff options
author | Matthew Raybuck <matthew.raybuck@ibm.com> | 2019-06-14 09:58:40 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-06-17 09:05:53 -0500 |
commit | 6adc57ce4966da0642139286dcc15cb20eec581e (patch) | |
tree | 6e85fce0a4e952087cee826eb960b67acd447451 /src/build/buildpnor | |
parent | dee477f94aa61aae3cd551b329b303fee1fb4455 (diff) | |
download | talos-hostboot-6adc57ce4966da0642139286dcc15cb20eec581e.tar.gz talos-hostboot-6adc57ce4966da0642139286dcc15cb20eec581e.zip |
Fix typo in buildBpmFlashImages.pl
Corrected a typo where 32GB NVDIMM binary was generated as 36GB
Change-Id: I49c4c8b8c561b5ebcde2b1324d3c4f419f490a18
RTC:210367
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/78962
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>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/buildpnor')
-rwxr-xr-x | src/build/buildpnor/buildBpmFlashImages.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build/buildpnor/buildBpmFlashImages.pl b/src/build/buildpnor/buildBpmFlashImages.pl index 5b4ecaea2..ba65dab0a 100755 --- a/src/build/buildpnor/buildBpmFlashImages.pl +++ b/src/build/buildpnor/buildBpmFlashImages.pl @@ -281,13 +281,13 @@ sub generateOutputNameAndVersion # According to the spec an example filename would be of the form: # S R C A80 6 2 IBM H 01 1 B _FULL_ FW_Rev1.03_02282019.txt # ^ ^ ^ - # 1: Number of NVDIMM interfaces (1 = 36GB, 2 = 16GB) + # 1: Number of NVDIMM interfaces (1 = 32GB, 2 = 16GB) # _FULL_: The image contains the firmware and configuration data. # Rev1.03: Version of this image file my @fileNameComponents = split(/_/, $name); # The NVDIMM interface types supported - my %nvdimmTypes = ( 1 => "36GB", + my %nvdimmTypes = ( 1 => "32GB", 2 => "16GB", ); # Extract the NVDIMM Interface number from filename |