zephyr/arch/Kconfig
Juan Manuel Cruz 132649f2cc Kconfig symbols for arch directory.
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
2016-02-05 20:14:04 -05:00

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