Skip to content

Commit

Permalink
Update: MilvusVisor Version 1.4.1
Browse files Browse the repository at this point in the history
- Add `embed_kernel`
  - Embed `hyeprvisor_kernel` into `BOOTAA64.EFI`
- Add Xilinx UART dirver
- Fix debug build warnings
- Fix PanicInfo::messge
- Improve naked functions
- Stabilize the `hypervisor_bootloader` crate
  - Remove all unstable features

Signed-off-by: Manami Mori <[email protected]>
  • Loading branch information
Manami Mori committed Jun 15, 2024
1 parent 806ab23 commit 84becae
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# http://opensource.org/licenses/mit-license.php
[package]
name = "common"
version = "1.4.0"
version = "1.4.1"
edition = "2021"
resolver = "2"

Expand Down
2 changes: 1 addition & 1 deletion src/hypervisor_bootloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# http://opensource.org/licenses/mit-license.php
[package]
name = "hypervisor_bootloader"
version = "1.4.0"
version = "1.4.1"
edition = "2021"
resolver = "2"

Expand Down
2 changes: 0 additions & 2 deletions src/hypervisor_bootloader/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

#![no_std]
#![no_main]
#![feature(naked_functions)]
#![feature(panic_info_message)]

use core::arch::asm;
use core::mem::MaybeUninit;
Expand Down
2 changes: 1 addition & 1 deletion src/hypervisor_kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# http://opensource.org/licenses/mit-license.php
[package]
name = "hypervisor_kernel"
version = "1.4.0"
version = "1.4.1"
edition = "2021"
resolver = "2"

Expand Down
2 changes: 1 addition & 1 deletion src/uefi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# http://opensource.org/licenses/mit-license.php
[package]
name = "uefi"
version = "1.4.0"
version = "1.4.1"
edition = "2021"
resolver = "2"

Expand Down

0 comments on commit 84becae

Please sign in to comment.