We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a63b9e commit 1970c81Copy full SHA for 1970c81
uefi/CHANGELOG.md
@@ -19,6 +19,7 @@
19
documentation for details of obligations for callers.
20
- `BootServices::allocate_pool` now returns `NonZero<u8>` instead of
21
`*mut u8`.
22
+- `helpers::system_table` is deprecated, use `table::system_table_boot` instead.
23
24
## Removed
25
- 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