Skip to content

Commit d5c4d8d

Browse files
committed
Make some tweaks to README re allocation in acpi
1 parent a2c745d commit d5c4d8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
A library to parse ACPI tables and AML, written in pure Rust. Designed to be easy to use from Rust bootloaders and kernels. The library is split into three crates:
1212
- `rsdp` parses the RSDP and can locate it on BIOS platforms. It does not depend on `alloc`, so is suitable to use from bootloaders without heap alloctors. All of its
1313
functionality is reexported by `acpi`.
14-
- `acpi` parses the static tables (useful but not feature-complete)
15-
- `aml` parses the AML tables (can be useful, far from feature-complete)
14+
- `acpi` parses the static tables (useful but not feature-complete). It can be used from environments that have allocators, and ones that don't (but with reduced functionality).
15+
- `aml` parses the AML tables (can be useful, far from feature-complete).
1616

1717
There is also the `acpi-dumper` utility to easily dump a platform's ACPI tables (this currently only works on Linux).
1818

@@ -30,7 +30,7 @@ You can run the AML test suite with `cargo run --bin aml_tester -- -p tests`.
3030
You can run fuzz the AML parser with `cd aml && cargo fuzz run fuzz_target_1` (you may need to `cargo install cargo-fuzz`).
3131

3232
## Licence
33-
Acpi is dual-licenced under:
33+
This project is dual-licenced under:
3434
- Apache Licence, Version 2.0 ([LICENCE-APACHE](LICENCE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
3535
- MIT license ([LICENCE-MIT](LICENCE-MIT) or http://opensource.org/licenses/MIT)
3636

0 commit comments

Comments
 (0)