From 068bed22a6154aec1fe689603b8a8eaa27c0f350 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 15 Aug 2013 09:02:17 +0200 Subject: 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 --- arch/x86/Kconfig | 3 --- arch/x86/boards/x86_generic/generic_pc.c | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/x86') diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 6589ae7a64..d8d7f0e651 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -5,9 +5,6 @@ config ARCH_TEXT_BASE hex default 0x00007c00 if MACH_X86_GENERIC -config BOARDINFO - default "Generic x86 bootloader" if MACH_X86_GENERIC - config BOARD_LINKER_SCRIPT bool default n diff --git a/arch/x86/boards/x86_generic/generic_pc.c b/arch/x86/boards/x86_generic/generic_pc.c index 9d3706923f..172c5318d8 100644 --- a/arch/x86/boards/x86_generic/generic_pc.c +++ b/arch/x86/boards/x86_generic/generic_pc.c @@ -75,6 +75,9 @@ static struct NS16550_plat serial_plat = { static int pc_console_init(void) { + barebox_set_model("X86 generic barebox"); + barebox_set_hostname("x86"); + /* Register the serial port */ add_ns16550_device(DEVICE_ID_DYNAMIC, 0x3f8, 8, 0, &serial_plat); -- cgit v1.2.3