make-initrd-ng: rustfmt

This commit is contained in:
K900 2022-07-30 12:30:46 +03:00
parent 605bd637bc
commit 1356441cb1

View File

@ -3,7 +3,7 @@ use std::env;
use std::ffi::OsStr; use std::ffi::OsStr;
use std::fs; use std::fs;
use std::hash::Hash; use std::hash::Hash;
use std::io::{BufReader, BufRead, Error, ErrorKind}; use std::io::{BufRead, BufReader, Error, ErrorKind};
use std::os::unix; use std::os::unix;
use std::path::{Component, Path, PathBuf}; use std::path::{Component, Path, PathBuf};
use std::process::Command; use std::process::Command;
@ -39,14 +39,18 @@ impl<T: Clone + Eq + Hash> NonRepeatingQueue<T> {
} }
fn patch_elf<S: AsRef<OsStr>, P: AsRef<OsStr>>(mode: S, path: P) -> Result<String, Error> { fn patch_elf<S: AsRef<OsStr>, P: AsRef<OsStr>>(mode: S, path: P) -> Result<String, Error> {
let output = Command::new("patchelf") let output = Command::new("patchelf").arg(&mode).arg(&path).output()?;
.arg(&mode)
.arg(&path)
.output()?;
if output.status.success() { if output.status.success() {
Ok(String::from_utf8(output.stdout).expect("Failed to parse output")) Ok(String::from_utf8(output.stdout).expect("Failed to parse output"))
} else { } else {
Err(Error::new(ErrorKind::Other, format!("failed: patchelf {:?} {:?}", OsStr::new(&mode), OsStr::new(&path)))) Err(Error::new(
ErrorKind::Other,
format!(
"failed: patchelf {:?} {:?}",
OsStr::new(&mode),
OsStr::new(&path)
),
))
} }
} }
@ -69,7 +73,11 @@ fn copy_file<P: AsRef<Path> + AsRef<OsStr>, S: AsRef<Path> + AsRef<OsStr>>(
queue.push_back(Box::from(Path::new(&interpreter_string.trim()))); queue.push_back(Box::from(Path::new(&interpreter_string.trim())));
} }
let rpath = rpath_string.trim().split(":").map(|p| Box::<Path>::from(Path::new(p))).collect::<Vec<_>>(); let rpath = rpath_string
.trim()
.split(":")
.map(|p| Box::<Path>::from(Path::new(p)))
.collect::<Vec<_>>();
for line in needed_string.lines() { for line in needed_string.lines() {
let mut found = false; let mut found = false;
@ -85,7 +93,11 @@ fn copy_file<P: AsRef<Path> + AsRef<OsStr>, S: AsRef<Path> + AsRef<OsStr>>(
if !found { if !found {
// glibc makes it tricky to make this an error because // glibc makes it tricky to make this an error because
// none of the files have a useful rpath. // none of the files have a useful rpath.
println!("Warning: Couldn't satisfy dependency {} for {:?}", line, OsStr::new(&source)); println!(
"Warning: Couldn't satisfy dependency {} for {:?}",
line,
OsStr::new(&source)
);
} }
} }
@ -95,11 +107,16 @@ fn copy_file<P: AsRef<Path> + AsRef<OsStr>, S: AsRef<Path> + AsRef<OsStr>>(
fs::set_permissions(&target, permissions)?; fs::set_permissions(&target, permissions)?;
// Strip further than normal // Strip further than normal
if !Command::new("strip").arg("--strip-all").arg(OsStr::new(&target)).output()?.status.success() { if !Command::new("strip")
.arg("--strip-all")
.arg(OsStr::new(&target))
.output()?
.status
.success()
{
println!("{:?} was not successfully stripped.", OsStr::new(&target)); println!("{:?} was not successfully stripped.", OsStr::new(&target));
} }
Ok(()) Ok(())
} }