2016-05-31 12:54+0200, Lukáš Doktor: > The premature_failure check fails on qemu-system-ppc64 as it uses > different message. This patch modifies the condition so it works > (hopefully) for all archs. > > Signed-off-by: Lukáš Doktor <ldoktor@xxxxxxxxxx> > --- > scripts/runtime.bash | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/runtime.bash b/scripts/runtime.bash > index 6c4c800..886814b 100644 > --- a/scripts/runtime.bash > +++ b/scripts/runtime.bash > @@ -17,7 +17,7 @@ premature_failure() > local log="$(eval $(get_cmdline _NO_FILE_4Uhere_) 2>&1)" > local last_line=$(tail -1 <<< "$log") > > - echo "$last_line" | grep -qi "could not load kernel" && > + echo "$last_line" | grep "_NO_FILE_4Uhere_" | grep -qi "no such file" && PPC uses "Could not open '_NO_FILE_4Uhere_': No such file [...]". The problem is that "No such file [...]" might be localized, so what about grep -qi "could not \(load kernel\|open\) '_NO_FILE_4Uhere_'" ? (A nicer, yet more complicated option would be to query the localized string that stands for "No such file or directory" with file, stat, or a dedicated utility for localized error messages.) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html