This patch:
- Adds a complete extension written in Rust, with all of the build
system logic to support Rust development as well.
- Fixes an issues on Intel systems where the MSR bitmaps were not
set up properly.
- Fixes a number of issues with UEFI.
- Fixes a number of issues with Windows, including a BSOD issue
with narrow contracts.
This patch:
- Completes all of the unit tests for the VMM
- Completes all of the unit tests for the syscall library
- Compleses all of the unit tests for the runtime library
- Completes all of the unit tests for the lib library
- Fixes a number of bugs identified during testing.
This patch:
- Adds the missing registers CR8, DR0, DR1, DR2, DR3 and XCR0
to the microkernel. These registers are now managed by the
microkernel for all extensions.
- Fixes an issue with alloc_page and alloc_huge where allocations
were not reflected to all of the direct maps.
- Fixes an issue with fail() not sending the correct arguments.
Further testing and debugging is needed for this.
This patch addresses the following:
- Adds a number of addition hypercall that are needed for MicroV
- Updates the code to support the changes made to the BSL including
better checking of safe integrals and narrow contracts
- Adds a lib folder to contain code shared between the kernel and
extensions where possible.
- Minor initial additions for Rust. Still lots of work to do here