diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-09-23 04:17:01 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-09-23 04:17:01 +0000 |
commit | 1537b639c0611c8715b2f3d7564d8f9c13aad2ba (patch) | |
tree | efd7d1a498b8e9344452ba20d309751f441750e4 /CHANGELOG.md | |
parent | d302e8d278bcd5b10ab7a30a467b5d8e21139ff2 (diff) | |
parent | a7fea44fe38b61a65ebc2d840c4c6c9e1bd8431d (diff) | |
download | nix-1537b639c0611c8715b2f3d7564d8f9c13aad2ba.zip |
Merge #930
930: Add wrapper for linux kernel module loading r=Susurrus a=bachp
- init_module and finit_module to load kernel modules
- delete_module to unload kernel modules
Co-authored-by: Pascal Bach <pascal.bach@nextrem.ch>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 52bd2f24..b63ea5b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ([#923](https://github.com/nix-rust/nix/pull/923)) - Added a `dir` module for reading directories (wraps `fdopendir`, `readdir`, and `rewinddir`). ([#916](https://github.com/nix-rust/nix/pull/916)) +- Added `kmod` module that allows loading and unloading kernel modules on Linux. + ([#930](https://github.com/nix-rust/nix/pull/930)) ### Changed - Increased required Rust version to 1.22.1/ |