forked from darwin-on-arm/GenericBooter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
68 lines (49 loc) · 1.14 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#
# For a description of the syntax of this configuration file,
# see scripts/config-language.txt.
#
mainmenu "GenericBooter/$ARCH Configuration"
choice
prompt "ARM processor target"
default PROC_CORTEX_A8
config PROC_CORTEX_A9
bool "Cortex-A9"
config PROC_CORTEX_A8
bool "Cortex-A8"
config PROC_CORTEX_A7
bool "Cortex-A7"
config PROC_ARM1176JZFS
bool "ARM1176JZF-S"
endchoice
choice
prompt "ARM board target"
default BOARD_ARM_REALVIEW
config BOARD_ARM_REALVIEW
bool "ARM RealView"
config BOARD_HPTOUCHPAD
bool "HP TouchPad"
depends on PROC_CORTEX_A9
config BOARD_HTC_HD2
bool "HTC HD2"
depends on PROC_CORTEX_A8
config BOARD_OMAP54XX
bool "Texas Instruments OMAP54XX"
depends on PROC_CORTEX_A9
config BOARD_OMAP34XX
bool "Texas Instruments OMAP3XXX"
depends on PROC_CORTEX_A8
config BOARD_AM335X
bool "Texas Instruments AM335X"
depends on PROC_CORTEX_A8
config BOARD_BCM2836
bool "Broadcom BCM2836"
depends on PROC_CORTEX_A7
endchoice
choice
prompt "Device tree style"
default DT_SUPPORT_APPLE_FDT
config DT_SUPPORT_APPLE_FDT
bool "iOS-compatible flattened device tree"
config DT_SUPPORT_XML
bool "XML device tree"
endchoice