barebox/arch/arm/mach-zynq/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

37 lines
503 B
Text

if ARCH_ZYNQ
config ARCH_TEXT_BASE
hex
default 0x1ff00000 if MACH_ZEDBOARD
config ZYNQ_DEBUG_LL_UART_BASE
hex
default 0xe0001000 if MACH_ZEDBOARD
choice
prompt "Xilinx Zynq type board"
config ARCH_ZYNQ7000
bool "Zynq-7000"
select CPU_V7
select CLKDEV_LOOKUP
select COMMON_CLK
select ARM_SMP_TWD
select HAS_MACB
endchoice
if ARCH_ZYNQ7000
choice
prompt "Zynq-7000 Board Type"
config MACH_ZEDBOARD
bool "Avnet Zynq-7000 ZedBoard"
select DRIVER_SERIAL_CADENCE
endchoice
endif
endif