summaryrefslogtreecommitdiffstats
path: root/tools/env
diff options
context:
space:
mode:
authorBenoît Thébaudeau <benoit.thebaudeau@advansee.com>2012-08-10 07:45:15 +0000
committerTom Rini <trini@ti.com>2012-09-18 12:01:51 -0700
commit8ae51ae172b89e198e33779403338fb41926950b (patch)
tree2d966efcb63633d602f978962f0878f0910f1826 /tools/env
parent84209afb87d10300a326589b5ce6e9e56bd5195b (diff)
downloadtalos-obmc-uboot-8ae51ae172b89e198e33779403338fb41926950b.tar.gz
talos-obmc-uboot-8ae51ae172b89e198e33779403338fb41926950b.zip
fw_env: Add env vars describing U-Boot target board
Commit 5e724ca did the same thing for env_common and env_embedded, but forgot fw_env. Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com> Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'tools/env')
-rw-r--r--tools/env/fw_env.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index e292d2ba1d..1a2c22756e 100644
--- a/tools/env/fw_env.c
+++ b/tools/env/fw_env.c
@@ -203,6 +203,17 @@ static char default_environment[] = {
#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
"pcidelay=" MK_STR (CONFIG_PCI_BOOTDELAY) "\0"
#endif
+#ifdef CONFIG_ENV_VARS_UBOOT_CONFIG
+ "arch=" CONFIG_SYS_ARCH "\0"
+ "cpu=" CONFIG_SYS_CPU "\0"
+ "board=" CONFIG_SYS_BOARD "\0"
+#ifdef CONFIG_SYS_VENDOR
+ "vendor=" CONFIG_SYS_VENDOR "\0"
+#endif
+#ifdef CONFIG_SYS_SOC
+ "soc=" CONFIG_SYS_SOC "\0"
+#endif
+#endif
#ifdef CONFIG_EXTRA_ENV_SETTINGS
CONFIG_EXTRA_ENV_SETTINGS
#endif
OpenPOWER on IntegriCloud