6 releases (breaking)

0.6.0 Oct 11, 2023
0.5.0 Mar 5, 2023
0.4.0 Dec 25, 2022
0.3.0 Jul 31, 2022
0.1.0 May 4, 2022

#286 in Operating systems

21 downloads per month
Used in switcheroo-nx

GPL-2.0-or-later

190KB
846 lines

Tegra RCM

A library to help exploit the bootROM exploit for the Tegra X1's RCM mode.

Currently compatible with Linux and macOS.
Windows support is WIP.

Example

    use std::fs;
    use tegra_rcm::{Payload, Rcm};

    let payload_bytes = fs::read(&payload).unwrap();
    let payload = Payload::new(&payload_bytes).unwrap();
    let mut switch = Rcm::new(wait).unwrap();
    // Init the switch device (should only be done once)
    switch.init().unwrap();
    // We MUST to read the device id first
    let _ = switch.read_device_id().unwrap();
    switch.execute(&payload).unwrap();
    println!("Done!");


lib.rs:

Tegra RCM library

A library to help exploit the bootROM exploit for the Tegra X1's RCM mode Current support OS's are Linux, MacOS, and Windows

Dependencies

~0.4–3MB
~49K SLoC