Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions kvm-bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Upcoming Release

### Added

- s390x (`s390x-unknown-linux-gnu`) KVM bindings, including `fam-wrappers` and `serde`
support aligned with other architectures.

## v0.14.1

### Fixed
Expand Down
1 change: 1 addition & 0 deletions kvm-bindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ following target architectures:
- x86_64
- arm64
- riscv64
- s390x

The bindings exported by this crate are statically generated using header files
associated with a specific kernel version, and are not automatically synced with
Expand Down
5 changes: 5 additions & 0 deletions kvm-bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,8 @@ pub use self::arm64::*;
mod riscv64;
#[cfg(target_arch = "riscv64")]
pub use self::riscv64::*;

#[cfg(target_arch = "s390x")]
mod s390x;
#[cfg(target_arch = "s390x")]
pub use self::s390x::*;
Loading