diff options
author | Andrew Geissler <andrewg@us.ibm.com> | 2013-11-17 09:26:40 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-11-17 13:17:26 -0600 |
commit | 8ca0a67a234608284498c871e990347cd9242475 (patch) | |
tree | c9673c0f88e6dbc75400602c0edc6dce6700d892 | |
parent | bab0060ea78a4ca1c23aba976c6f7ded38a278b5 (diff) | |
download | talos-hostboot-8ca0a67a234608284498c871e990347cd9242475.tar.gz talos-hostboot-8ca0a67a234608284498c871e990347cd9242475.zip |
Workaround lack of enum support as default in uint8 data type
Issue 91689 was opened to track final solution. This is temp
workarond to get sprint release out.
Change-Id: I62efc3ea5a4a6b28f67c9ce566aec69f99e54ce8
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/7286
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
-rw-r--r-- | src/usr/targeting/common/xmltohb/attribute_types.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/targeting/common/xmltohb/attribute_types.xml b/src/usr/targeting/common/xmltohb/attribute_types.xml index 506a45d22..b5f45c4d4 100644 --- a/src/usr/targeting/common/xmltohb/attribute_types.xml +++ b/src/usr/targeting/common/xmltohb/attribute_types.xml @@ -12617,13 +12617,14 @@ firmware notes: Platforms should initialize this attribute to AUTO (0)</descript <default>NOT_MASTER</default> </enumerationType> +<!-- TODO RTC 91689 Support enum in default --> <attribute> <id>PROC_MASTER_TYPE</id> <description>Type of Master, ACTING_MASTER or MASTER_CANDIDATE or NOT_MASTER</description> <simpleType> <uint8_t> - <default>NOT_MASTER</default> + <default>2</default> </uint8_t> </simpleType> <persistency>non-volatile</persistency> |