ee464b17ce
Instead of depending BOOTBLOCK_CONSOLE on a set of architectures, allow the arch or platform to specify whether it can provide a C environment. This simplifies the selection logic. Change-Id: Ia3e41796d9aea197cee0a073acce63761823c3aa Signed-off-by: Alexandru Gagniuc <alexandrux.gagniuc@intel.com> Reviewed-on: https://review.coreboot.org/12871 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
28 lines
358 B
Text
28 lines
358 B
Text
config ARCH_ARM
|
|
bool
|
|
default n
|
|
|
|
config ARCH_BOOTBLOCK_ARM
|
|
bool
|
|
default n
|
|
select ARCH_ARM
|
|
select C_ENVIRONMENT_BOOTBLOCK
|
|
|
|
config ARCH_VERSTAGE_ARM
|
|
bool
|
|
default n
|
|
|
|
config ARCH_ROMSTAGE_ARM
|
|
bool
|
|
default n
|
|
|
|
config ARCH_RAMSTAGE_ARM
|
|
bool
|
|
default n
|
|
|
|
source src/arch/arm/armv4/Kconfig
|
|
source src/arch/arm/armv7/Kconfig
|
|
|
|
config ARM_LPAE
|
|
bool
|
|
default n
|