diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2017-09-23 22:28:55 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-09-24 01:28:15 -0400 |
commit | ac058e9b3c6d1d5d57089d42cbb75b76f36d24a2 (patch) | |
tree | 16e6333d80313b92205991ad50703b0f1d84118f /src/usr | |
parent | ae1ec87519537127e51be584f644771671c975d6 (diff) | |
download | talos-hostboot-ac058e9b3c6d1d5d57089d42cbb75b76f36d24a2.tar.gz talos-hostboot-ac058e9b3c6d1d5d57089d42cbb75b76f36d24a2.zip |
Disable VDM on ZZ
Temporary disablement to get a release out
Change-Id: I4527a689947ed4cb8393b6db23659608534351c4
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46662
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr')
-rwxr-xr-x | src/usr/targeting/common/genHwsvMrwXml.pl | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/usr/targeting/common/genHwsvMrwXml.pl b/src/usr/targeting/common/genHwsvMrwXml.pl index ec12c50f5..042841266 100755 --- a/src/usr/targeting/common/genHwsvMrwXml.pl +++ b/src/usr/targeting/common/genHwsvMrwXml.pl @@ -442,13 +442,16 @@ elsif ($reqPol->{'required_synch_mode'} eq 'undetermined') push @systemAttr, ['REQUIRED_SYNCH_MODE', 0]; } +#@fixme - Disabling VDM on ZZ # Handle the new name when/if it shows up in the xml # otherwise we'll just rely on the default value -if ( exists $reqPol->{'system_vdm_disable'} ) -{ - push @systemAttr, ['SYSTEM_VDM_DISABLE', - $reqPol->{'system_vdm_disable'}]; -} +#if ( exists $reqPol->{'system_vdm_disable'} ) +#{ +# push @systemAttr, ['SYSTEM_VDM_DISABLE', +# $reqPol->{'system_vdm_disable'}]; +#} +push @systemAttr, ['SYSTEM_VDM_DISABLE', 1]; + if ( exists $reqPol->{'dpll_vdm_response'} ) { |