soc/amd/stoneyridge: remove LIDS field from global NVS
[coreboot.git] / payloads / libpayload / arch / mock / Kconfig
blob3903a76005f022ee404dd26ebf8653bb4efb7990
1 # SPDX-License-Identifier: GPL-2.0-only
3 if ARCH_MOCK
5 config ARCH_MOCK_BIG_ENDIAN
6         bool "Use big-endian for mock architecture"
7         default n
8         help
9           This option enables big-endinan support in the code.
11 config ARCH_SPECIFIC_OPTIONS
12         def_bool y
13         select LITTLE_ENDIAN if !ARCH_MOCK_BIG_ENDIAN
14         select BIG_ENDIAN if ARCH_MOCK_BIG_ENDIAN
16 endif