Skip to content

Commit da73392

Browse files
committed
Merge branch 'v0.9-base' into new_asm_for_0_9
2 parents bdb49cd + cc055a7 commit da73392

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

Cargo.lock

+12-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bootloader"
3-
version = "0.9.19"
3+
version = "0.9.20"
44
authors = ["Philipp Oppermann <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "An experimental pure-Rust x86 bootloader."
@@ -14,7 +14,7 @@ required-features = ["binary"]
1414

1515
[dependencies]
1616
xmas-elf = { version = "0.6.2", optional = true }
17-
x86_64 = { version = "0.13.2", optional = true, default-features = false, features = ["instructions", "inline_asm"] }
17+
x86_64 = { version = "0.14.7", optional = true, default-features = false, features = ["instructions", "inline_asm"] }
1818
usize_conversions = { version = "0.2.0", optional = true }
1919
fixedvec = { version = "0.2.4", optional = true }
2020
bit_field = { version = "0.10.0", optional = true }

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
# 0.9.20 – 2021-12-20
4+
5+
- Update x86_64 dependency to v0.14.7 to fix nightly breakage ([#208](https://github.com/rust-osdev/bootloader/pull/208))
6+
37
# 0.9.19 – 2021-08-09
48

59
- Set `relocation-model: static` and `panic-strategy: abort` and `fix .intel_syntax` warnings [#185](https://github.com/rust-osdev/bootloader/pull/185)

example-kernel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = ["Philipp Oppermann <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
x86_64 = { version = "0.13.2", default-features = false, features = ["instructions", "inline_asm"] }
8+
x86_64 = { version = "0.14.7", default-features = false, features = ["instructions", "inline_asm"] }

src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ extern crate rlibc;
1111

1212
use bootloader::bootinfo::{BootInfo, FrameRange};
1313
use core::arch::asm;
14-
use core::convert::TryInto;
15-
use core::panic::PanicInfo;
14+
use core::{arch::global_asm, convert::TryInto, panic::PanicInfo};
1615
use core::{mem, slice};
1716
use fixedvec::alloc_stack;
1817
use usize_conversions::usize_from;

test-kernel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = ["Philipp Oppermann <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
x86_64 = { version = "0.13.2", default-features = false, features = ["instructions", "inline_asm"] }
8+
x86_64 = { version = "0.14.7", default-features = false, features = ["instructions", "inline_asm"] }

0 commit comments

Comments
 (0)