Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 972aaa7

Browse filesBrowse files
authored
Merge pull request #439 from fmckeogh/main
Fix doc comment and error message only referencing the BIOS but used for UEFI
2 parents b7e2760 + 63a01e0 commit 972aaa7
Copy full SHA for 972aaa7

File tree

Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed

‎src/lib.rs

Copy file name to clipboardExpand all lines: src/lib.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ impl DiskImageBuilder {
216216

217217
let out_file = NamedTempFile::new().context("failed to create temp file")?;
218218
fat::create_fat_filesystem(local_map, out_file.path())
219-
.context("failed to create BIOS FAT filesystem")?;
219+
.context("failed to create FAT filesystem")?;
220220

221221
Ok(out_file)
222222
}

‎src/uefi/mod.rs

Copy file name to clipboardExpand all lines: src/uefi/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use bootloader_boot_config::BootConfig;
44

55
use crate::DiskImageBuilder;
66

7-
/// Create disk images for booting on legacy BIOS systems.
7+
/// Create disk images for booting on UEFI systems.
88
pub struct UefiBoot {
99
image_builder: DiskImageBuilder,
1010
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.