summaryrefslogtreecommitdiff
path: root/include/configs/exynos5-dt-common.h
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2014-11-09 10:44:32 +0000
committerMinkyu Kang <mk7.kang@samsung.com>2014-11-17 19:11:03 +0900
commite6825e03627522ad73c6052b087233e0e74c0dd9 (patch)
tree17e3ff81269d3351f65762c7c105627f2f9791d8 /include/configs/exynos5-dt-common.h
parentadc7d20631930873ff8314319b3c66f2798d6bc6 (diff)
downloadu-boot-imx-e6825e03627522ad73c6052b087233e0e74c0dd9.zip
u-boot-imx-e6825e03627522ad73c6052b087233e0e74c0dd9.tar.gz
u-boot-imx-e6825e03627522ad73c6052b087233e0e74c0dd9.tar.bz2
exynos5: Use config_distro_bootcmd.h
This replaces the existing CONFIG_BOOTCOMMAND for exynos5250 and 5420. exynos4 platforms seem to have existing complex extra env configuration for booting and so are excluded here. Hence the bootcmd.h is added to exynos5-common.h. I have build tested on all exynos platforms (MAKEALL -s exynos), but only boot tested on arndale. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Guillaume GARDET <guillaume.gardet@free.fr> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include/configs/exynos5-dt-common.h')
-rw-r--r--include/configs/exynos5-dt-common.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/include/configs/exynos5-dt-common.h b/include/configs/exynos5-dt-common.h
index 66547fa..9cef0b0 100644
--- a/include/configs/exynos5-dt-common.h
+++ b/include/configs/exynos5-dt-common.h
@@ -9,6 +9,13 @@
#ifndef __CONFIG_EXYNOS5_DT_COMMON_H
#define __CONFIG_EXYNOS5_DT_COMMON_H
+/* Console configuration */
+#undef EXYNOS_DEVICE_SETTINGS
+#define EXYNOS_DEVICE_SETTINGS \
+ "stdin=serial,cros-ec-keyb\0" \
+ "stdout=serial,lcd\0" \
+ "stderr=serial,lcd\0"
+
#include "exynos5-common.h"
/* PMIC */
@@ -22,14 +29,4 @@
#define CONFIG_CMD_CROS_EC
#define CONFIG_KEYBOARD
-/* Console configuration */
-#undef EXYNOS_DEVICE_SETTINGS
-#define EXYNOS_DEVICE_SETTINGS \
- "stdin=serial,cros-ec-keyb\0" \
- "stdout=serial,lcd\0" \
- "stderr=serial,lcd\0"
-
-#define CONFIG_EXTRA_ENV_SETTINGS \
- EXYNOS_DEVICE_SETTINGS
-
#endif