<feed xmlns='http://www.w3.org/2005/Atom'>
<title>opensbi.git, branch v0.2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/opensbi.git/atom/?h=v0.2</id>
<link rel='self' href='http://cgit.235523.xyz/opensbi.git/atom/?h=v0.2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/'/>
<updated>2019-02-22T06:03:22Z</updated>
<entry>
<title>include: Bump-up version to 0.2</title>
<updated>2019-02-22T06:03:22Z</updated>
<author>
<name>Anup Patel</name>
<email>anup.patel@wdc.com</email>
</author>
<published>2019-02-22T06:03:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=a1ffba1ac9b0cde0e9005fa79b36e45216646b9d'/>
<id>urn:sha1:a1ffba1ac9b0cde0e9005fa79b36e45216646b9d</id>
<content type='text'>
This patch increases OpenSBI version to 0.2.

Signed-off-by: Anup Patel &lt;anup.patel@wdc.com&gt;
</content>
</entry>
<entry>
<title>scripts: Add script for creating binary archive</title>
<updated>2019-02-22T05:58:41Z</updated>
<author>
<name>Anup Patel</name>
<email>anup.patel@wdc.com</email>
</author>
<published>2019-02-20T08:48:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=d022c5d3ae7890a0c11341c80dcef3e3ae674247'/>
<id>urn:sha1:d022c5d3ae7890a0c11341c80dcef3e3ae674247</id>
<content type='text'>
This patch adds scripts/create-binary-archive.sh which helps
us create a common tarball containing headers, static library
and firmware ELFs for all platforms.

This script can be used for release purpose OR for compile
testing all platforms.

Example usage commands are as follows:

1) Binary release archive for 32bit systems
./scripts/create-binary-archive.sh -s "bin" -x 32 -d

2) Binary release archive for 64bit systems
./scripts/create-binary-archive.sh -s "bin" -d

3) Compile test for 32bit systems
./scripts/create-binary-archive.sh -x 32 -t

4) Compile test for 64bit systems
./scripts/create-binary-archive.sh -t

Signed-off-by: Anup Patel &lt;anup.patel@wdc.com&gt;
</content>
</entry>
<entry>
<title>Makefile: Rename compile_ld() to compile_elf()</title>
<updated>2019-02-22T05:58:41Z</updated>
<author>
<name>Anup Patel</name>
<email>anup.patel@wdc.com</email>
</author>
<published>2019-02-20T08:46:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=889e746fd7be97ca0dbaaf7a6a734429b7ca607f'/>
<id>urn:sha1:889e746fd7be97ca0dbaaf7a6a734429b7ca607f</id>
<content type='text'>
The compile_ld() is actually used to create ELF files so
the name is misleading hence this patch renames it to
compile_elf(). We also rename LDFLAGS to ELFFLAGS because
these will be used for ELF creation only.

Signed-off-by: Anup Patel &lt;anup.patel@wdc.com&gt;
</content>
</entry>
<entry>
<title>doc: Fix root partition details for fu540.</title>
<updated>2019-02-22T04:28:55Z</updated>
<author>
<name>Atish Patra</name>
<email>atish.patra@wdc.com</email>
</author>
<published>2019-02-22T02:04:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=fde1c42db35a991f62a1a8a6b26508dab486e61a'/>
<id>urn:sha1:fde1c42db35a991f62a1a8a6b26508dab486e61a</id>
<content type='text'>
Signed-off-by: Atish Patra &lt;atish.patra@wdc.com&gt;
</content>
</entry>
<entry>
<title>firmware: Improve low-level trap handler for M-mode to M-mode traps</title>
<updated>2019-02-20T06:32:40Z</updated>
<author>
<name>Anup Patel</name>
<email>anup.patel@wdc.com</email>
</author>
<published>2019-02-19T12:41:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=122d00ba67c9caeffc65ddd96dd22c0d204f4c72'/>
<id>urn:sha1:122d00ba67c9caeffc65ddd96dd22c0d204f4c72</id>
<content type='text'>
This patch extends our low-level trap handler in fw_base.S for
handling M-mode to M-mode traps without overwritting stack.

Signed-off-by: Anup Patel &lt;anup.patel@wdc.com&gt;
</content>
</entry>
<entry>
<title>include: Add PRILX define to help print unsigned long</title>
<updated>2019-02-20T06:32:40Z</updated>
<author>
<name>Anup Patel</name>
<email>anup.patel@wdc.com</email>
</author>
<published>2019-02-19T12:36:46Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=ce6189f7a5adbf6ac88b95f78a6d5e9b5481faf9'/>
<id>urn:sha1:ce6189f7a5adbf6ac88b95f78a6d5e9b5481faf9</id>
<content type='text'>
The unsigned long is always machine word size. This means it is
4 bytes on 32bit system and 8 bytes on 64bit system.

This patch adds PRILX define for sbi_printf() which will help us
print unsigned long without worrying whether it is 32bit or 64bit
system.

Signed-off-by: Anup Patel &lt;anup.patel@wdc.com&gt;
</content>
</entry>
<entry>
<title>template: Fix some callback names</title>
<updated>2019-02-19T12:52:58Z</updated>
<author>
<name>Sergi Granell</name>
<email>xerpi.g.12@gmail.com</email>
</author>
<published>2019-02-19T06:35:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=db5b25af49d4a2e4940ca9dee1a289b836f36650'/>
<id>urn:sha1:db5b25af49d4a2e4940ca9dee1a289b836f36650</id>
<content type='text'>
</content>
</entry>
<entry>
<title>template: Remove trailing ';'</title>
<updated>2019-02-19T12:52:58Z</updated>
<author>
<name>Sergi Granell</name>
<email>xerpi.g.12@gmail.com</email>
</author>
<published>2019-02-18T14:46:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=72a8272066f040b95e7eb470c8a1ce55f4cd99c7'/>
<id>urn:sha1:72a8272066f040b95e7eb470c8a1ce55f4cd99c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>template: Fix typo in platform_final_init</title>
<updated>2019-02-19T12:52:58Z</updated>
<author>
<name>Sergi Granell</name>
<email>xerpi.g.12@gmail.com</email>
</author>
<published>2019-02-18T14:40:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=4b92518959e371a8c82276a7244aebe9ca4c90de'/>
<id>urn:sha1:4b92518959e371a8c82276a7244aebe9ca4c90de</id>
<content type='text'>
There was a space instead of '_' in the function `platform_final_init`.</content>
</entry>
<entry>
<title>docs: Update unleashed platform guide.</title>
<updated>2019-02-19T12:52:26Z</updated>
<author>
<name>Atish Patra</name>
<email>atish.patra@wdc.com</email>
</author>
<published>2019-02-19T07:18:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/opensbi.git/commit/?id=d046974cf6c3d4bca880b72bc877c7b185f73a7d'/>
<id>urn:sha1:d046974cf6c3d4bca880b72bc877c7b185f73a7d</id>
<content type='text'>
Following updates to fu540 platform guide.

1. Update a section about flashing the firmware binary
to sdcard with correct partition identifier.
2. Refer the individual payload section.
3. Update uboot booting section.

Signed-off-by: Atish Patra &lt;atish.patra@wdc.com&gt;
</content>
</entry>
</feed>
