This commit adds the Kconfig files that describe the CONFIG symbols that belongs to the arch directory and subdirectories. Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com> Change-Id: I744225ddaa5e2b45113ca049457a8f9925ebe4c2
15 lines
242 B
Text
15 lines
242 B
Text
config ARCH
|
|
string
|
|
option env="ARCH"
|
|
default "x86"
|
|
help
|
|
This option identifies the architecture type.
|
|
The values supported are: x86 arm
|
|
|
|
if ARCH = "x86"
|
|
source "arch/x86/Kconfig"
|
|
endif
|
|
|
|
if ARCH = "arm"
|
|
source "arch/arm/Kconfig"
|
|
endif
|