<feed xmlns='http://www.w3.org/2005/Atom'>
<title>talos-sbe/src/build, branch 07-25-2019</title>
<subtitle>Blackbird™ SBE sources</subtitle>
<id>https://git.raptorcs.com/git/talos-sbe/atom?h=07-25-2019</id>
<link rel='self' href='https://git.raptorcs.com/git/talos-sbe/atom?h=07-25-2019'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/'/>
<updated>2020-02-19T20:45:33+00:00</updated>
<entry>
<title>Disable SBE console print as it significantly slows down SBE execution Status information is already transmitted over Port 81h/82h to the host system</title>
<updated>2020-02-19T20:45:33+00:00</updated>
<author>
<name>Raptor Engineering Development Team</name>
<email>support@raptorengineering.com</email>
</author>
<published>2019-04-26T08:00:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=6a87332a88b227f5716188c14ae21139840c8387'/>
<id>urn:sha1:6a87332a88b227f5716188c14ae21139840c8387</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Send IPL status codes to BMC over LPC port 81h/82h</title>
<updated>2020-02-19T20:45:33+00:00</updated>
<author>
<name>Timothy Pearson</name>
<email>tpearson@raptorengineering.com</email>
</author>
<published>2019-04-23T21:38:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=610838fa62b782010a7f846cb5c77965efa6ef6a'/>
<id>urn:sha1:610838fa62b782010a7f846cb5c77965efa6ef6a</id>
<content type='text'>
Signed-off-by: Timothy Pearson &lt;tpearson@raptorengineering.com&gt;
</content>
</entry>
<entry>
<title>treewide: use print function instead of statement</title>
<updated>2020-01-16T05:42:58+00:00</updated>
<author>
<name>Marty E. Plummer</name>
<email>hanetzer@startmail.com</email>
</author>
<published>2019-05-10T05:43:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=e0e6c72e94c754b76b1cdd4cbc44a15762e04dee'/>
<id>urn:sha1:e0e6c72e94c754b76b1cdd4cbc44a15762e04dee</id>
<content type='text'>
This enables better compat between python2.7 and python3.x

Without this change, building with python3.x (python3.5 tested) as
/usr/bin/python will result in the following error:

File: "sbe/src/build/security/securityRegListGen.py", line 64
    -v, --verbose            enable verbose traces"
                                                  ^
SyntaxError: Missing parentheses in call to 'print'

Signed-off-by: Marty E. Plummer &lt;hanetzer@startmail.com&gt;

Change-Id: Id617f54096fca5cc5fcd829767595a85350e343d
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89618
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>parsAndCutElf: convert line to str</title>
<updated>2020-01-10T05:09:57+00:00</updated>
<author>
<name>Marty E. Plummer</name>
<email>hanetzer@startmail.com</email>
</author>
<published>2019-05-10T07:39:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=2615d39b099f344928c8ad03332e69ee6d5068ce'/>
<id>urn:sha1:2615d39b099f344928c8ad03332e69ee6d5068ce</id>
<content type='text'>
Without this change, building with python3.x (python3.5 tested) as
/usr/bin/python will result in the following error:

Traceback (most recent call last):
  File "./parsAndCutElf.py", line 79, in &lt;module&gt;
    parserElf(sys.argv)
  File "./parsAndCutElf.py", line 54, in parserElf
    if( (line.find(firstSection) != -1) ):
TypeError: a bytes-like object is required, not 'str'

Change-Id: I0220d0457371349d0a77ac042484fd03f8a984da
Signed-off-by: Marty E. Plummer &lt;hanetzer@startmail.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89385
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: Srikantha S. Meesala &lt;srikantha@in.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>securityRegListGen: use io.open and read in text mode.</title>
<updated>2020-01-10T05:09:28+00:00</updated>
<author>
<name>Marty E. Plummer</name>
<email>hanetzer@startmail.com</email>
</author>
<published>2019-05-10T06:38:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=e7dccb090786794b44213d3add032e484777726d'/>
<id>urn:sha1:e7dccb090786794b44213d3add032e484777726d</id>
<content type='text'>
io.open is compatible with python3.x's open builtin. Open in text mode
(no 'b') as this is a plain csv file, and specify the encoding as utf8.

Without this change, building with python3.x (python3.5 tested) as
/usr/bin/python will result in the following error:

File "sbe/src/build/security/securityRegListGen.py", line 695, in &lt;module&gt;
  main(sys.argv)
File "sbe/src/build/security/securityRegListGen.py", line 592, in main
  for idx, row in enumerate(reader):
File "/usr/lib/python3.5/csv.py", line 109, in __next__
  self.fieldnames
File "/usr/lib/python3.5/csv.py", line 96, in fieldnames
  self._fieldnames = next(self.reader)
_csv.Error: iterator should return strings, not bytes
(did you open the file in text mode?)

Change-Id: Ib86ea774b40c89e83ab1c0474014222f2fe9ddb9
Signed-off-by: Marty E. Plummer &lt;hanetzer@startmail.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89386
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: Srikantha S. Meesala &lt;srikantha@in.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>updateBuildTag: convert proc.stdout.read() to str.</title>
<updated>2020-01-10T05:05:50+00:00</updated>
<author>
<name>Marty E. Plummer</name>
<email>hanetzer@startmail.com</email>
</author>
<published>2019-05-10T09:03:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=629327db0795743615e1baeb5d6f007dec1cd99e'/>
<id>urn:sha1:629327db0795743615e1baeb5d6f007dec1cd99e</id>
<content type='text'>
In python2.7, proc.stdout.read() returns a str type. On python3.x, it
returns bytes.

Without this change, building with python3.x (python3.5 tested) as
/usr/bin/python will result in the following error:

Traceback (most recent call last):
  File "./updateBuildTag.py", line 76, in &lt;module&gt;
    updateBuildTag(sys.argv)
  File "./updateBuildTag.py", line 62, in updateBuildTag
    cmd_build_tag = cmd_build_tag+" "+commit_id
TypeError: Can't convert 'bytes' object to str implicitly

Change-Id: Ib53e0012dd32883559c5fb9d82beb6f2d8881921
Signed-off-by: Marty E. Plummer &lt;hanetzer@startmail.com&gt;
Signed-off-by: vinaybs6 &lt;vinaybs6@in.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89363
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: Srikantha S. Meesala &lt;srikantha@in.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Axone: Update sbeOpDistribute.py</title>
<updated>2019-05-28T04:24:11+00:00</updated>
<author>
<name>Murulidhar Nataraju</name>
<email>murulidhar@in.ibm.com</email>
</author>
<published>2019-05-02T16:45:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=28c54880dd080a0baa1540246effd7c49a499c82'/>
<id>urn:sha1:28c54880dd080a0baa1540246effd7c49a499c82</id>
<content type='text'>
Change-Id: I13d42b7a322c2a43bf5ecf4c74465cc1bd60acc9
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/77821
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Added .NOTPARALLEL special key for *.s intermediate files from *.S</title>
<updated>2019-05-16T14:03:18+00:00</updated>
<author>
<name>Raja Das</name>
<email>rajadas2@in.ibm.com</email>
</author>
<published>2019-05-16T06:28:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=c54904f7b338cc81b81c85d32e21d5a17b3fbf07'/>
<id>urn:sha1:c54904f7b338cc81b81c85d32e21d5a17b3fbf07</id>
<content type='text'>
Change-Id: I40c2c0bb1eecc7099bde468e7ee77f94116679ae
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/77438
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: MURULIDHAR NATARAJU &lt;murulidhar@in.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Fix for race condition while copying "p9_xip_tool"</title>
<updated>2019-04-29T09:24:37+00:00</updated>
<author>
<name>kswaroop</name>
<email>krathmar@in.ibm.com</email>
</author>
<published>2019-04-11T10:00:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=3f92b561d721a3fabfe0138f31707d522ec10392'/>
<id>urn:sha1:3f92b561d721a3fabfe0138f31707d522ec10392</id>
<content type='text'>
Change-Id: Ia204d6e0e35f862db02210907e3f1819850cc930
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/75868
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>White/Black/Grey List Binary dump full SBE  implementation</title>
<updated>2019-03-14T09:07:39+00:00</updated>
<author>
<name>Srikantha Meesala</name>
<email>srikantha@in.ibm.com</email>
</author>
<published>2019-01-24T08:23:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=e02d72ae04fe9f0c763a18e10c09aad692510c2c'/>
<id>urn:sha1:e02d72ae04fe9f0c763a18e10c09aad692510c2c</id>
<content type='text'>
Change-Id: I7e547677102edb93b562dae767fd5a01b86958ce
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70842
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
</feed>
