1 /* 2 * SPDX-License-Identifier: Apache-2.0 3 * Copyright (c) 2019 Intel Corp. 4 */ 5 6 #include <zephyr/kernel.h> 7 #include "info.h" 8 multiboot(void)9__weak void multiboot(void) 10 { 11 printk("MULTIBOOT: Not supported in this build.\n\n"); 12 } 13 memmap(void)14__weak void memmap(void) 15 { 16 printk("MEMMAP: Not supported in this build.\n\n"); 17 } 18 acpi(void)19__weak void acpi(void) 20 { 21 printk("ACPI: Not supported in this build.\n\n"); 22 } 23 main(void)24int main(void) 25 { 26 printk("\n\ninfo: the Zephyr x86 platform information tool\n\n"); 27 28 multiboot(); 29 memmap(); 30 acpi(); 31 timer(); 32 33 printk("info: complete\n"); 34 return 0; 35 } 36