tegra_rcm/
lib.rs

1//! Tegra RCM library
2//!
3//! A library to help exploit the bootROM exploit for the Tegra X1's RCM mode
4//! Current support OS's are Linux, MacOS, and Windows
5
6mod buffer;
7mod device;
8mod env;
9mod error;
10mod hotplug;
11mod payload;
12mod switch;
13mod vulnerability;
14
15use device::SwitchHandle;
16use error::Result;
17
18pub use env::check_env;
19pub use error::SwitchError;
20pub use hotplug::{create_hotplug, Actions};
21pub use payload::{Payload, PayloadError};
22pub use switch::{Handle, Switch};