class Origen::Errata::HwErratum

Attributes

description[RW]

Description of erratum

disposition[RW]

How the errata is to be distributed ex:

--Internal Only
--Customer visible
--Other: 3rd party, etc.
fix_plan[RW]

When/if the erratum will be fixed

hw_workaround_description[RW]

Description of the hardware workaround for the erratum

id[R]

ID number used to identify erratum

impact[RW]

Impact of erratum to customer

ip_block[RW]

IP block that is associate with this errata

sw_workaround[RW]

Software workaround object associated with erratum

title[RW]

Erratum Title

Public Class Methods

new(id, ip_block, overview = {}, status = {}, sw_workaround = {}) click to toggle 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