Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 499 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 499 Bytes

kmoddep

A tiny library to work with Linux kernel module information. It currently features the following:

  • finding all available kernels
  • find module dependencies
  • lsmod (as a function)

Documentation

https://docs.rs/kmoddep/latest/kmoddep/

Usage Example

use kmoddep::modinfo::lsmod;

fn main() {
    for m in lsmod() {
        println!("{:<30} {:<10} {} {}", m.name, m.mem_size, m.instances, m.dependencies.join(", ");
    }
}