Skip to content
Merged

2.3.1 #607

Show file tree
Hide file tree
Changes from all 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
34 changes: 34 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Revision History for Microkit

## Release 2.3.1

This release contains a security fix, various bug fixes, and new board support.

### Security

* Endpoint and Notification capabilities now only get the rights they need.
Previously the tool gave all rights, which let a let a PD do more than
intended. For example, a client PD with a PPC to a server PD can receive
on the server's Endpoint and consume all the messages meant for the server.

### Bug fixes

* When using the domain scheduler, a VM's VCPUs are now placed in the same
domain as the VMM PD. Previously VM performance was badly degraded.
* The tool now checks that VM priority in the SDF are valid.
* The second CPU cluster on the RockPro64 is now enabled in SMP
configurations.
* The tool now reports an error for duplicate MSI or I/O APIC interrupt
sources. The kernel does not detect this, so it previously went
unnoticed.

### Board support

* Raspberry Pi 5B

### Known issue

* Currently, on x86-64, VMs will not work if you create more than 1 VM per
system or use the SMP configuration of `x86_64_generic_vtx`. This is due
to a bug in seL4, which was fixed in
[PR 1732](https://github.com/seL4/seL4/pull/1732). The fix will be brought
to Microkit on the next seL4 and Microkit release.

## Release 2.3.0

This release contains quite a few new features:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0-dev
2.3.1
2 changes: 1 addition & 1 deletion docs/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
-->

---
title: Microkit User Manual (v2.3.0-dev)
title: Microkit User Manual (v2.3.1)
documentclass: article
classoption:
- english
Expand Down
2 changes: 1 addition & 1 deletion initialiser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[package]
name = "initialiser"
version = "2.3.0-dev"
version = "2.3.1"
edition = "2021"
rust-version = "1.88.0"

Expand Down
2 changes: 1 addition & 1 deletion platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
platforms:
- name: rpi5b_2gb
cmake_plat: bcm2712
since: dev
since: 2.3.1
- name: stm32mp2
cmake_plat: stm32mp2
since: 2.3.0
Expand Down
2 changes: 1 addition & 1 deletion tool/microkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[package]
name = "microkit-tool"
version = "2.3.0-dev"
version = "2.3.1"
edition = "2021"
rust-version = "1.94.0"

Expand Down
Loading