Skip to content

Commit 4bb45a4

Browse files
committed
Hide os_bootinfo using own bootinfo module
This allows us to merge the os_bootinfo crate into the bootloader without breakage (in case we want to do that someday). It also hides the os_bootinfo crate as an implementation detail.
1 parent 4a453c5 commit 4bb45a4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#![no_std]
22

3-
pub extern crate os_bootinfo as bootinfo;
3+
extern crate os_bootinfo;
4+
5+
pub mod bootinfo {
6+
pub use os_bootinfo::*;
7+
}
48

59
/// Defines the entry point function.
610
///

0 commit comments

Comments
 (0)