diff --git a/src/main.rs b/src/main.rs index 1b7f71a2..2c02a09a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -570,12 +570,6 @@ fn run() -> Result<()> { || linux::run_fwupdmgr(run_type), config.no_retry(), )?; - execute( - &mut report, - "rpi-update", - || linux::run_rpi_update(sudo.as_ref(), run_type), - config.no_retry(), - )?; } if config.should_run(Step::Restarts) { diff --git a/src/steps/os/linux.rs b/src/steps/os/linux.rs index 1c31d2ed..858d3d0e 100644 --- a/src/steps/os/linux.rs +++ b/src/steps/os/linux.rs @@ -441,15 +441,6 @@ pub fn run_snap(sudo: Option<&PathBuf>, run_type: RunType) -> Result<()> { run_type.execute(sudo).arg(snap).arg("refresh").check_run() } -pub fn run_rpi_update(sudo: Option<&PathBuf>, run_type: RunType) -> Result<()> { - let sudo = require_option(sudo)?; - let rpi_update = require("rpi-update")?; - - print_separator("rpi-update"); - - run_type.execute(sudo).arg(rpi_update).check_run() -} - pub fn run_pihole_update(sudo: Option<&PathBuf>, run_type: RunType) -> Result<()> { let sudo = require_option(sudo)?; let pihole = require("pihole")?;