barebox/arch/nios2/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

36 lines
507 B
Text

config NIOS2
bool
select HAS_KALLSYMS
select HAS_MODULES
select HAVE_CONFIGURABLE_MEMORY_LAYOUT
default y
config ARCH_TEXT_BASE
hex
default 0x00000000
choice
prompt "Select your board"
config GENERIC
bool "Generic"
select NIOS2
endchoice
menu "Board configuration"
config EARLY_PRINTF
default n
bool "Enable early printf functions"
endmenu
source common/Kconfig
source commands/Kconfig
source net/Kconfig
source drivers/Kconfig
source fs/Kconfig
source lib/Kconfig
source crypto/Kconfig