Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding secure-only SW model #323

Merged
merged 6 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doxygen/src/General.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ The following sections provide more information:
<td>
- The \ref createPackPublish "pack publishing process" has been rewritten completely
- removed the old tutorials that have been superseded by the online versions on GitHub
- added 'Secure-only' to \ref DsecureEnum "DsecureEnum" to specify a secure software model without provisions for a non-secure partition
</td>
</tr>
<tr>
Expand Down
4 changes: 4 additions & 0 deletions doxygen/src/devices_schema.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2762,6 +2762,10 @@ The values can be used in the elements:
<td class="XML-Token">TZ-disabled</td>
<td>Application is built with TrustZone security disabled.</td>
</tr>
<tr>
<td class="XML-Token">Secure-only</td>
<td>Application is built to run in secure mode without any provisions to switch to non-secure code nor for non-secure callable entry points.</td>
</tr>
</table>

<p>&nbsp;</p>
Expand Down
4 changes: 3 additions & 1 deletion schema/PACK.xsd
brondani marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
limitations under the License.


$Date: 30. Aug 2024

Check failure on line 21 in schema/PACK.xsd

View workflow job for this annotation

GitHub Actions / Validate pack schema

Modification date tag not updated, should be '02. Sep 2024'!
$Revision: 1.7.39

Check failure on line 22 in schema/PACK.xsd

View workflow job for this annotation

GitHub Actions / Validate pack schema

Revision tag not updated, should be incremented!
$Project: Schema File for Package Description File Format Specification

Package file name convention <vendor>.<name>.<version>.pack
Expand All @@ -39,7 +39,7 @@
- add attribute overview to package description element
- fix 'BOYAMICRO' vendor value in 'DeviceVendorEnum'
12. Apr 2024: v1.7.34
- - added 'Watech:183' to 'DeviceVendorEnum'
- added 'Watech:183' to 'DeviceVendorEnum'
26. Mar 2024: v1.7.33
- added 'BOYAMICRO:182' to 'DeviceVendorEnum'
05. Mar 2024: v1.7.32
Expand Down Expand Up @@ -1187,6 +1187,8 @@
<xs:enumeration value="Secure" />
<!-- TZ disabled -->
<xs:enumeration value="TZ-disabled" />
<!-- Secure only -->
<xs:enumeration value="Secure-only" />
<!-- deprecated -->
<xs:enumeration value="0" /> <!-- Non-secure -->
<xs:enumeration value="1" /> <!-- Secure -->
Expand Down
Loading