I was wondering why the configuration size didn't match the multiplication and then I realised there was an errata.
Signed-off-by: Daniel Sangorrin <[email protected]> --- Documentation/debug-output.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/debug-output.md b/Documentation/debug-output.md index 5bdc412c..c86270eb 100644 --- a/Documentation/debug-output.md +++ b/Documentation/debug-output.md @@ -41,7 +41,7 @@ Possible register distances (MMIO only, PIO is implicitly 1-byte), to be or'ed: Possible framebuffer formats (EFIFB only); - - JAILHOUSE_CON_FB_1024x768 /* 1024x786 pixel, 32 bit each */ + - JAILHOUSE_CON_FB_1024x768 /* 1024x768 pixel, 32 bit each */ - JAILHOUSE_CON_FB_1920x1080 /* 1920x1080 pixel, 32 bit each */ ### .address and .size @@ -92,7 +92,7 @@ Example configuration for EFI framebuffer debug out on x86: .debug_console = { .address = 0x80000000, /* framebuffer base address */ - .size = 0x300000, /* 1024x786x4 */ + .size = 0x300000, /* 1024x768x4 */ .type = JAILHOUSE_CON_TYPE_EFIFB, /* choose the EFIFB driver */ .flags = JAILHOUSE_CON_MMIO | \ /* access is MMIO */ JAILHOUSE_CON_FB_1024x768 /* format */ -- 2.25.1 -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/jailhouse-dev/20200826231119.1445942-1-daniel.sangorrin%40toshiba.co.jp.
