Skip to content

Commit e50b09f

Browse files
Merge pull request #1445 from nicholasbishop/bishop-raw-nodes-2
Add device path node types to uefi-raw
2 parents e013663 + 333d54e commit e50b09f

File tree

9 files changed

+757
-160
lines changed

9 files changed

+757
-160
lines changed

uefi-raw/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Added
44

55
- Added `DeviceType` and `DeviceSubType` enums.
6+
- Added device path node types in the `protocol::device_path` module.
67

78

89
# uefi-raw - 0.8.0 (2024-09-09)

uefi-raw/src/protocol/device_path.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
mod device_path_gen;
2+
13
use crate::{guid, Char16, Guid};
24

5+
pub use device_path_gen::{acpi, bios_boot_spec, end, hardware, media, messaging};
6+
37
/// Device path protocol.
48
///
59
/// A device path contains one or more device path instances made of up

0 commit comments

Comments
 (0)