From: Piotr Wilczek
Date: Wed, 22 Jan 2014 14:54:34 +0000 (+0100)
Subject: board:samsung:universal: add env variables describing platform
X-Git-Tag: v2014.04-rc1~77^2~14^2~5
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=815a6072f06557ce776744ef2c3b57189a2abd3e;p=u-boot
board:samsung:universal: add env variables describing platform
This patch adds variables describing platform (soc, board, vendor)
to default environment.
Signed-off-by: Piotr Wilczek
Signed-off-by: Kyungmin Park
Cc: Przemyslaw Marczak
Acked-by: Przemyslaw Marczak
Signed-off-by: Minkyu Kang
---
diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c
index ced4caa86f..96da7e0861 100644
--- a/board/samsung/universal_c210/universal.c
+++ b/board/samsung/universal_c210/universal.c
@@ -516,6 +516,9 @@ int board_init(void)
#ifdef CONFIG_MISC_INIT_R
int misc_init_r(void)
{
+#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
+ set_board_info();
+#endif
#ifdef CONFIG_LCD_MENU
keys_init();
check_boot_mode();
diff --git a/include/configs/s5pc210_universal.h b/include/configs/s5pc210_universal.h
index bfb044b087..67921e900b 100644
--- a/include/configs/s5pc210_universal.h
+++ b/include/configs/s5pc210_universal.h
@@ -124,6 +124,9 @@
#define CONFIG_SYS_CONSOLE_INFO_QUIET
#define CONFIG_SYS_CONSOLE_IS_IN_ENV
+#define CONFIG_ENV_VARS_UBOOT_CONFIG
+#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
+
#define CONFIG_EXTRA_ENV_SETTINGS \
"updateb=" \
"onenand erase 0x0 0x100000;" \