class Origen::Errata::HwErratum
Attributes
Description of erratum
How the errata is to be distributed ex:
--Internal Only --Customer visible --Other: 3rd party, etc.
When/if the erratum will be fixed
Description of the hardware workaround for the erratum
ID number used to identify erratum
Impact of erratum to customer
IP block that is associate with this errata
Software workaround object associated with erratum
Erratum Title
Public Class Methods
Source
# File lib/origen/errata/hw_erratum.rb, line 34 def initialize(id, ip_block, overview = {}, status = {}, sw_workaround = {}) @id = id @ip_block = ip_block @title = overview[:title] @description = overview[:description] @hw_workaround_description = overview[:hw_workaround_description] @disposition = status[:disposition] @impact = status[:impact] @fix_plan = status[:fix_plan] @sw_workaround = sw_workaround end