This aligns the location of the cmdline section of ARM inmates with ARM64 inmates.
Signed-off-by: Ralf Ramsauer <[email protected]> --- Documentation/debug-output.md | 2 +- inmates/lib/arm/inmate.lds.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/debug-output.md b/Documentation/debug-output.md index 10b593c6..fda38680 100644 --- a/Documentation/debug-output.md +++ b/Documentation/debug-output.md @@ -151,7 +151,7 @@ inmate will initialise UART: Example configuration for MMIO based debug output on ARM using the 8250 driver: jailhouse cell load foocell inmate.bin \ - -s "con-type=8250 con-base=0x70006000 con-divider=0xdd" -a 0x100 + -s "con-type=8250 con-base=0x70006000 con-divider=0xdd" -a 0x1000 Example configuration for MMIO based debug output on ARM64 using the PL011 driver: diff --git a/inmates/lib/arm/inmate.lds.S b/inmates/lib/arm/inmate.lds.S index 6f64b5ed..e2d994cb 100644 --- a/inmates/lib/arm/inmate.lds.S +++ b/inmates/lib/arm/inmate.lds.S @@ -48,7 +48,7 @@ SECTIONS { . = CONFIG_INMATE_BASE; .boot : { *(.boot) } - . = CONFIG_INMATE_BASE + 0x100; + . = CONFIG_INMATE_BASE + 0x1000; .cmdline : { *(.cmdline) BYTE(0); /* empty string in case no buffer is provided */ -- 2.17.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.
