:orphan: .. title:: SET_GDT .. option:: CONFIG_SET_GDT *Setup GDT as part of boot process* Type: ``bool`` Help ==== This option sets up the GDT as part of the boot process. However, this may conflict with some security scenarios where the GDT is already appropriately set by an earlier bootloader stage, in which case this should be disabled. If disabled, the global _gdt pointer will not be available. Direct dependencies =================== !\ :option:`X86_64 ` && \ :option:`X86 ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols that select this symbol =============================== - \ :option:`X86_STACK_PROTECTION ` - \ :option:`X86_USERSPACE ` - \ :option:`X86_USE_THREAD_LOCAL_STORAGE ` Kconfig definition ================== .. highlight:: kconfig At ``arch/x86/core/Kconfig.ia32:25`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/x86/Kconfig:319`` Menu path: (Top) → X86 Architecture Options → Memory Layout Options .. parsed-literal:: config SET_GDT bool "Setup GDT as part of boot process" default y depends on !\ :option:`X86_64 ` && \ :option:`X86 ` help This option sets up the GDT as part of the boot process. However, this may conflict with some security scenarios where the GDT is already appropriately set by an earlier bootloader stage, in which case this should be disabled. If disabled, the global _gdt pointer will not be available. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*