with
Not_found ->
error "could not find kernel log buffer in kernel image";
+ error "try: %s --dump-kernel %s | strings | less"
+ (get_program_name ()) guest_name;
exit 1
)
match addr with
| None ->
error "init_uts_ns nor system_utsname symbols not found in this kernel";
+ error "try: %s --dump-kernel %s | strings | less"
+ (get_program_name ()) guest_name;
exit 1
| Some addr ->
(* Sanity check. *)
if system <> "Linux" then (
error "utsname symbols found in kernel, but points to unknown structure";
+ error "try: %s --dump-kernel %s | strings | less"
+ (get_program_name ()) guest_name;
exit 1
);