We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d44132 commit e2b348eCopy full SHA for e2b348e
uefi/CHANGELOG.md
@@ -17,6 +17,7 @@
17
documentation for details of obligations for callers.
18
- `BootServices::allocate_pool` now returns `NonZero<u8>` instead of
19
`*mut u8`.
20
+- `helpers::system_table` is deprecated, use `table::system_table_boot` instead.
21
22
## Removed
23
- Removed the `panic-on-logger-errors` feature of the `uefi` crate. Logger
uefi/src/helpers/mod.rs
@@ -40,7 +40,7 @@ mod println;
40
///
41
/// The returned pointer is only valid until boot services are exited.
42
#[must_use]
43
-// TODO do we want to keep this public?
+#[deprecated(note = "use uefi::table::system_table_boot instead")]
44
pub fn system_table() -> SystemTable<Boot> {
45
table::system_table_boot().expect("boot services are not active")
46
}
0 commit comments