Skip to content

Commit

Permalink
doc: remove some more uefi-services references
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Apr 19, 2024
1 parent 4d1906e commit 46d14a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ This project contains multiple sub-crates:

- `uefi`: defines the standard UEFI tables / interfaces.
The objective is to stay unopinionated and safely wrap most interfaces.
Additional opinionated features (such as a Logger) are feature-gated.

- `uefi-macros`: procedural macros that are used to derive some traits
in `uefi`.
Expand All @@ -83,9 +84,6 @@ This project contains multiple sub-crates:
Specification. Safe wrappers for these types are provided by the `uefi`
crate. The raw types are suitable for implementing UEFI firmware.

- `uefi-services`: provides a panic handler, and initializes
the `alloc` / `logger` features.

- `uefi-test-runner`: a UEFI application that runs unit / integration tests.

[log]: https://github.com/rust-lang-nursery/log
Expand Down
2 changes: 1 addition & 1 deletion book/src/tutorial/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cd my-uefi-app
Add a few dependencies:

```sh
cargo add log uefi uefi-services
cargo add log uefi
```

Replace the contents of `src/main.rs` with this:
Expand Down
2 changes: 1 addition & 1 deletion template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ UEFI application developed using `uefi-rs`.
- [`rust-toolchain.toml`](rust-toolchain.toml) adds the UEFI targets.
- [`Cargo.toml`](./Cargo.toml) shows the necessary dependencies.
- [`src/main.rs`](./src/main.rs) has a minimal entry point that
initializes the `uefi-services` crate and exits successfully.
initializes recommended helpers and exits successfully.

## Building kernels which use UEFI

Expand Down

0 comments on commit 46d14a0

Please sign in to comment.