payloads/libpayload: Remove ARCH_SPECIFIC_OPTIONS

Remove dummy ARCH_SPECIFIC_OPTIONS.

Change-Id: Ia71021b8597b1d6a227292b6568351e994ad62b0
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76940
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
This commit is contained in:
Elyes Haouas 2023-08-12 08:01:10 +02:00 committed by Martin L Roth
parent 0ace876a74
commit 5a303b2194
4 changed files with 11 additions and 19 deletions

View File

@ -26,10 +26,5 @@
## SUCH DAMAGE.
##
if ARCH_ARM
config ARCH_SPECIFIC_OPTIONS
def_bool y
config ARCH_ARM
select LITTLE_ENDIAN
endif

View File

@ -26,12 +26,11 @@
## SUCH DAMAGE.
##
if ARCH_ARM64
config ARCH_SPECIFIC_OPTIONS
def_bool y
config ARCH_ARM64
select LITTLE_ENDIAN
if ARCH_ARM64
config ARM64_A53_ERRATUM_843419
bool "Enable Cortex-A53 erratum 843419 linker workaround"
default n

View File

@ -1,5 +1,9 @@
# SPDX-License-Identifier: GPL-2.0-only
config ARCH_MOCK
select LITTLE_ENDIAN if !ARCH_MOCK_BIG_ENDIAN
select BIG_ENDIAN if ARCH_MOCK_BIG_ENDIAN
if ARCH_MOCK
config ARCH_MOCK_BIG_ENDIAN
@ -8,9 +12,4 @@ config ARCH_MOCK_BIG_ENDIAN
help
This option enables big-endinan support in the code.
config ARCH_SPECIFIC_OPTIONS
def_bool y
select LITTLE_ENDIAN if !ARCH_MOCK_BIG_ENDIAN
select BIG_ENDIAN if ARCH_MOCK_BIG_ENDIAN
endif

View File

@ -26,13 +26,12 @@
## SUCH DAMAGE.
##
if ARCH_X86
config ARCH_SPECIFIC_OPTIONS
def_bool y
config ARCH_X86
select LITTLE_ENDIAN
select IO_ADDRESS_SPACE
if ARCH_X86
config ENABLE_APIC
bool "Enables the Local APIC"