From: Andreas Koelbl <[email protected]> This documentation was formated with pseudo-markdown. Update all examples to markdown.
Signed-off-by: Andreas Koelbl <[email protected]> --- Applies against Hennings patches on top of next ...configuration.txt => hypervisor-configuration.md} | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) rename Documentation/{hypervisor-configuration.txt => hypervisor-configuration.md} (95%) diff --git a/Documentation/hypervisor-configuration.txt b/Documentation/hypervisor-configuration.md similarity index 95% rename from Documentation/hypervisor-configuration.txt rename to Documentation/hypervisor-configuration.md index 95e7096a..1be20510 100644 --- a/Documentation/hypervisor-configuration.txt +++ b/Documentation/hypervisor-configuration.md @@ -12,6 +12,7 @@ Available configuration options ------------------------------- General configuration parameters +``` /* Print error sources with filename and line number to debug console */ #define CONFIG_TRACE_ERROR 1 /* @@ -19,47 +20,66 @@ General configuration parameters * Linux inmates will dump a stack trace in this case. */ #define CONFIG_CRASH_CELL_ON_PANIC 1 +``` ### Example board specific configurations #### ARM +``` /* BananaPi M1 */ #define CONFIG_MACH_BANANAPI 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* Nvidia Jetson TK1 */ #define CONFIG_MACH_JETSON_TK1 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* Xunlong Orange Pi Zero, 256 MiB */ #define CONFIG_MACH_ORANGEPI0 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* ARM Fast Model */ #define CONFIG_MACH_VEXPRESS 1 /* Fast Model supports both, GICv2 and GICv3 */ #define CONFIG_ARM_GIC_V2 1 /* #define CONFIG_ARM_GIC_V3 */ +``` #### ARM64 +``` /* Nvidia Jetson TK1 */ #define CONFIG_MACH_JETSON_TX1 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* Xilinx Zynq UltraScale+ MPSoC ZCU102 */ #define CONFIG_MACH_ZYNQMP_ZCU102 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* HiKey LeMaker 2 GiB */ #define CONFIG_MACH_HIKEY 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* ARMv8 Foundation Model */ #define CONFIG_MACH_FOUNDATION_V8 1 #define CONFIG_ARM_GIC_V2 1 +``` +``` /* AMD ARM-Opteron A1100 */ #define CONFIG_MACH_AMD_SEATTLE 1 #define CONFIG_ARM_GIC_V2 1 +``` -- 2.12.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]. For more options, visit https://groups.google.com/d/optout.
