Browse Source

Improved an error output for missing bins.

master
freesource 23 years ago
parent
commit
846dc5647d
  1. 3
      gBootRoot

3
gBootRoot

@ -2049,6 +2049,9 @@ sub initrd {
foreach (@initrd_stuff) {
($path,$value) = stripper(find_file_in_path($_),"bin");
$value == 0 ? ($tool = "cp -a") : ($tool = "mv");
if (!$path) {
info(1,"gBootRoot Error: Couldn't find $_\n");
}
return if errcp(sys("$tool $path $tmp/initrd_mnt/bin")) == 2;
}

Loading…
Cancel
Save