>From now on, 'jailhouse enable' will dump the console if an error occurs during initialisation of the hypervisor.
Signed-off-by: Ralf Ramsauer <[email protected]> --- tools/jailhouse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/jailhouse.c b/tools/jailhouse.c index ede6ad4412..904c0658f3 100644 --- a/tools/jailhouse.c +++ b/tools/jailhouse.c @@ -234,8 +234,10 @@ static int enable(int argc, char *argv[]) fd = open_dev(); err = ioctl(fd, JAILHOUSE_ENABLE, config); - if (err) + if (err) { perror("JAILHOUSE_ENABLE"); + dump_console(fd, true); + } close(fd); free(config); -- 2.11.0 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
