Skip to content

Commit 7edf2f8

Browse files
authored
Merge pull request #162 from rust-osdev/nightly-fix
Fix build on latest Rust nightly
2 parents 222787a + a9b47f1 commit 7edf2f8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ x86_64 = { version = "0.13.2", optional = true, default-features = false, featur
3333
usize_conversions = { version = "0.2.0", optional = true }
3434
bit_field = { version = "0.10.0", optional = true }
3535
log = { version = "0.4.8", optional = true }
36-
uefi = { version = "0.7.0", optional = true }
36+
uefi = { version = "0.9.0", optional = true }
3737
argh = { version = "0.1.3", optional = true }
3838
displaydoc = { version = "0.1.7", optional = true }
3939
conquer-once = { version = "0.2.1", optional = true, default-features = false }

Changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
- Fix build on latest Rust nightly by updating to `uefi` v0.9.0 ([#162](https://github.com/rust-osdev/bootloader/pull/162))
4+
35
# 0.10.3 – 2021-05-05
46

57
- Change register used in setting SS in stage_4 ([#156](https://github.com/rust-osdev/bootloader/pull/156))

src/bin/uefi.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ fn init_logger(st: &SystemTable<Boot>) -> (PhysAddr, FrameBufferInfo) {
154154
horizontal_resolution: mode_info.resolution().0,
155155
vertical_resolution: mode_info.resolution().1,
156156
pixel_format: match mode_info.pixel_format() {
157-
PixelFormat::RGB => bootloader::boot_info::PixelFormat::BGR,
158-
PixelFormat::BGR => bootloader::boot_info::PixelFormat::BGR,
157+
PixelFormat::Rgb => bootloader::boot_info::PixelFormat::BGR,
158+
PixelFormat::Bgr => bootloader::boot_info::PixelFormat::BGR,
159159
PixelFormat::Bitmask | PixelFormat::BltOnly => {
160160
panic!("Bitmask and BltOnly framebuffers are not supported")
161161
}

0 commit comments

Comments
 (0)