:orphan: .. title:: MULTIBOOT_INFO .. option:: CONFIG_MULTIBOOT_INFO *Preserve multiboot information structure* Type: ``bool`` Help ==== Multiboot passes a pointer to an information structure to the kernel entry point. Some drivers (e.g., the multiboot framebuffer display driver) need to refer to information in this structure, and so set this option to preserve the data in a permanent location. Direct dependencies =================== \ :option:`MULTIBOOT ` && \ :option:`X86 ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols that select this symbol =============================== - \ :option:`MULTIBOOT_MEMMAP ` - \ :option:`MULTIBOOT_FRAMEBUF ` Kconfig definition ================== .. highlight:: kconfig At ``arch/x86/Kconfig:132`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → X86 Architecture Options → Generate multiboot header .. parsed-literal:: config MULTIBOOT_INFO bool "Preserve multiboot information structure" depends on \ :option:`MULTIBOOT ` && \ :option:`X86 ` help Multiboot passes a pointer to an information structure to the kernel entry point. Some drivers (e.g., the multiboot framebuffer display driver) need to refer to information in this structure, and so set this option to preserve the data in a permanent location. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*