blob: 633c5ef98de80a74c01445cd2755815c0eb86615 [file] [log] [blame]
David Hendricks5367e472012-11-28 20:16:28 -08001menu "Architecture (armv7)"
2
Stefan Reinauer52db0b92012-12-07 17:15:04 -08003# Maximum reboot count
4# TODO: Improve description.
5config MAX_REBOOT_CNT
6 int
7 default 3
8
9choice
10 prompt "Bootblock behaviour"
11 default ARM_BOOTBLOCK_SIMPLE
12
13config ARM_BOOTBLOCK_SIMPLE
14 bool "Always load fallback"
15
16config ARM_BOOTBLOCK_NORMAL
17 bool "Switch to normal if non-volatile memory says so"
18
19endchoice
20
21config BOOTBLOCK_SOURCE
22 string
23 default "bootblock_simple.c" if ARM_BOOTBLOCK_SIMPLE
24 default "bootblock_normal.c" if ARM_BOOTBLOCK_NORMAL
25
26config UPDATE_IMAGE
27 bool "Update existing coreboot.rom image"
28 default n
Stefan Reinauer52db0b92012-12-07 17:15:04 -080029 help
30 If this option is enabled, no new coreboot.rom file
31 is created. Instead it is expected that there already
32 is a suitable file for further processing.
33 The bootblock will not be modified.
34
Stefan Reinauerff7c8e82013-05-29 13:12:20 -070035config HAVE_ARCH_MEMSET
36 bool
37 default y
38
39config HAVE_ARCH_MEMCPY
40 bool
41 default y
42
David Hendricks5367e472012-11-28 20:16:28 -080043endmenu