add ld library function
This commit is contained in:
parent
0a5f26fe61
commit
975d165228
@ -154,10 +154,11 @@ fn add_package_rows(
|
|||||||
.to_owned()
|
.to_owned()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.to_string();
|
.to_string();
|
||||||
let kernel_min_x86_march = kernel["min_x86_march"]
|
//let kernel_min_x86_march = kernel["min_x86_march"]
|
||||||
.as_u64()
|
// .as_str()
|
||||||
.to_owned()
|
// .to_owned()
|
||||||
.unwrap();
|
// .unwrap()
|
||||||
|
// .to_string();
|
||||||
let kernel_package_version = match Command::new("/usr/lib/fedora-kernel-manager/scripts/get_version.sh")
|
let kernel_package_version = match Command::new("/usr/lib/fedora-kernel-manager/scripts/get_version.sh")
|
||||||
.args([&kernel_package])
|
.args([&kernel_package])
|
||||||
.output() {
|
.output() {
|
||||||
@ -441,7 +442,7 @@ fn get_cpu_feature_level() -> String {
|
|||||||
.spawn() // Once configured, we actually spawn the command...
|
.spawn() // Once configured, we actually spawn the command...
|
||||||
.unwrap(); // and assert everything went right.
|
.unwrap(); // and assert everything went right.
|
||||||
let grep_command = Command::new("grep")
|
let grep_command = Command::new("grep")
|
||||||
.arg("(supported, searched2)")
|
.arg("(supported, searched)")
|
||||||
.stdin(Stdio::from(base_command.stdout.unwrap()))
|
.stdin(Stdio::from(base_command.stdout.unwrap()))
|
||||||
.stdout(Stdio::piped())
|
.stdout(Stdio::piped())
|
||||||
.spawn()
|
.spawn()
|
||||||
|
Loading…
Reference in New Issue
Block a user