30 lines
708 B
Rust
30 lines
708 B
Rust
use anyhow::Result;
|
|
use const_format::concatcp;
|
|
use rust_embed::RustEmbed;
|
|
|
|
use crate::{defs::BINARY_DIR, utils};
|
|
|
|
pub const RESETPROP_PATH: &str = concatcp!(BINARY_DIR, "resetprop");
|
|
pub const BUSYBOX_PATH: &str = concatcp!(BINARY_DIR, "busybox");
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
#[derive(RustEmbed)]
|
|
#[folder = "bin/aarch64"]
|
|
struct Asset;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
#[derive(RustEmbed)]
|
|
#[folder = "bin/x86_64"]
|
|
struct Asset;
|
|
|
|
pub fn ensure_binaries(ignore_if_exist: bool) -> Result<()> {
|
|
for file in Asset::iter() {
|
|
utils::ensure_binary(
|
|
format!("{BINARY_DIR}{file}"),
|
|
&Asset::get(&file).unwrap().data,
|
|
ignore_if_exist,
|
|
)?
|
|
}
|
|
Ok(())
|
|
}
|