2012-11-29 05:16:28 +01:00
|
|
|
menu "Architecture (armv7)"
|
|
|
|
|
2013-07-07 22:52:37 +02:00
|
|
|
|
|
|
|
config ARM_ARCH_OPTIONS
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
select HAVE_ARCH_MEMSET
|
|
|
|
select HAVE_ARCH_MEMCPY
|
2013-07-07 23:15:22 +02:00
|
|
|
select HAVE_ARCH_MEMMOVE
|
2013-07-07 22:52:37 +02:00
|
|
|
|
2012-12-08 02:15:04 +01:00
|
|
|
# Maximum reboot count
|
|
|
|
# TODO: Improve description.
|
|
|
|
config MAX_REBOOT_CNT
|
|
|
|
int
|
|
|
|
default 3
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Bootblock behaviour"
|
|
|
|
default ARM_BOOTBLOCK_SIMPLE
|
|
|
|
|
|
|
|
config ARM_BOOTBLOCK_SIMPLE
|
|
|
|
bool "Always load fallback"
|
|
|
|
|
|
|
|
config ARM_BOOTBLOCK_NORMAL
|
|
|
|
bool "Switch to normal if non-volatile memory says so"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BOOTBLOCK_SOURCE
|
|
|
|
string
|
|
|
|
default "bootblock_simple.c" if ARM_BOOTBLOCK_SIMPLE
|
|
|
|
default "bootblock_normal.c" if ARM_BOOTBLOCK_NORMAL
|
|
|
|
|
|
|
|
config UPDATE_IMAGE
|
|
|
|
bool "Update existing coreboot.rom image"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If this option is enabled, no new coreboot.rom file
|
|
|
|
is created. Instead it is expected that there already
|
|
|
|
is a suitable file for further processing.
|
|
|
|
The bootblock will not be modified.
|
|
|
|
|
2012-11-29 05:16:28 +01:00
|
|
|
endmenu
|