start support for kex

This commit is contained in:
nora 2024-08-12 17:38:53 +02:00
parent 18993f3a00
commit 11fcb4cd84
4 changed files with 48 additions and 5 deletions

View file

@ -220,6 +220,10 @@ fn execute_command(command: &[u8]) -> ProcessOutput {
status: 0,
stdout: CPUINFO_UNAME_A.to_vec(),
},
"true" => ProcessOutput {
status: 0,
stdout: b"".to_vec(),
},
_ => {
let argv0 = command.split_ascii_whitespace().next().unwrap_or("");