:orphan: .. title:: CONFIG_GDT_DYNAMIC .. kconfig:: CONFIG_GDT_DYNAMIC CONFIG_GDT_DYNAMIC ################## *Store GDT in RAM so that it can be modified* Type: ``bool`` Help ==== .. code-block:: none This option stores the GDT in RAM instead of ROM, so that it may be modified at runtime at the expense of some memory. Direct dependencies =================== \ :kconfig:`SET_GDT ` && !\ :kconfig:`X86_64 ` && \ :kconfig:`X86 ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols that select this symbol =============================== - \ :kconfig:`X86_STACK_PROTECTION ` - \ :kconfig:`X86_USERSPACE ` - \ :kconfig:`X86_USE_THREAD_LOCAL_STORAGE ` Kconfig definition ================== At ``/x86/core/Kconfig.ia32:35`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/x86/Kconfig:482`` Menu path: (Top) → X86 Architecture Options → Memory Layout Options → Setup GDT as part of boot process .. code-block:: kconfig config GDT_DYNAMIC bool "Store GDT in RAM so that it can be modified" depends on SET_GDT && !X86_64 && X86 help This option stores the GDT in RAM instead of ROM, so that it may be modified at runtime at the expense of some memory. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*