- 
CONFIG_UOS_RAM_SIZE¶ 
Size of the User OS (UOS) RAM
Type: hex
Help¶
A 64-bit integer indicating the size of the User OS RAM (MMIO not included). Now we assume each UOS uses same amount of RAM size.
Defaults¶
- 0x100000000 if 
PLATFORM_SBL - 0x200000000 if 
PLATFORM_UEFI 
Kconfig definition¶
At arch/x86/Kconfig:269
Included via Kconfig:3
Menu path: (top menu)
config UOS_RAM_SIZE
    hex
    prompt "Size of the User OS (UOS) RAM"
    default 0x100000000 if PLATFORM_SBL
    default 0x200000000 if PLATFORM_UEFI
    help
      A 64-bit integer indicating the size of the User OS RAM (MMIO not
      included). Now we assume each UOS uses same amount of RAM size.
(Definitions include propagated dependencies, including from if’s and menus.)