summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/omap343xdsp
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-08-15 09:02:17 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-08-16 08:40:55 +0200
commit068bed22a6154aec1fe689603b8a8eaa27c0f350 (patch)
tree5cebcbbbcd486ee49552253d27d079b7f6703fd4 /arch/arm/boards/omap343xdsp
parent774580c2bde4c8b126eed0a80d00cb22cbfb3193 (diff)
downloadbarebox-068bed22a6154aec1fe689603b8a8eaa27c0f350.tar.gz
barebox-068bed22a6154aec1fe689603b8a8eaa27c0f350.tar.xz
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>
Diffstat (limited to 'arch/arm/boards/omap343xdsp')
-rw-r--r--arch/arm/boards/omap343xdsp/board.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm/boards/omap343xdsp/board.c b/arch/arm/boards/omap343xdsp/board.c
index 654d8c0822..8329ace483 100644
--- a/arch/arm/boards/omap343xdsp/board.c
+++ b/arch/arm/boards/omap343xdsp/board.c
@@ -53,9 +53,6 @@
#include <mach/gpmc.h>
#include <errno.h>
-/*-----------------------CONSOLE Devices -----------------------------------*/
-
-#ifdef CONFIG_DRIVER_SERIAL_NS16550
/**
* @brief UART serial port initialization - remember to enable COM clocks in arch
*
@@ -63,13 +60,15 @@
*/
static int sdp3430_console_init(void)
{
+ barebox_set_model("Texas Instruments SDP343x");
+ barebox_set_hostname("sdp343x");
+
omap3_add_uart3();
return 0;
}
console_initcall(sdp3430_console_init);
-#endif /* CONFIG_DRIVER_SERIAL_NS16550 */
static int sdp3430_mem_init(void)
{