barebox/arch/arm/mach-nomadik/Kconfig
Sascha Hauer 068bed22a6 Set model and hostname at boardlevel
With multiboard support the compiletime generated BOARDINFO string
gets more and more meaningless. This removes it from Kconfig and
replaces it with a variable that can be set at boardlevel.

Also many boards have a standard setting for the hostname in the
environment. This patch also moves the standard to C code by calling
barebox_set_hostname().

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2013-08-16 08:40:55 +02:00

22 lines
311 B
Text

if ARCH_NOMADIK
config ARCH_TEXT_BASE
hex
default 0x03c00000 if MACH_NOMADIK_8815NHK
choice
prompt "Nomadik boards"
config MACH_NOMADIK_8815NHK
bool "ST 8815 Nomadik Hardware Kit (evaluation board)"
select NOMADIK_8815
select CLKDEV_LOOKUP
endchoice
config NOMADIK_8815
bool
select ARM_AMBA
endif