summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoy Cho <joy.cho@hardkernel.com>2018-01-16 12:50:55 +0900
committerGerrit Code Review <gerrit@almond.hardkernel.com>2018-01-16 12:50:55 +0900
commit9dccda79460d460be77f8567861c331eb8451046 (patch)
treebd114ba681ddb65c1c629460248e7780d0786466
parentdfe222375e6fcc4e8a611626012b1620cb01b723 (diff)
parent74dce1e724b616e654e8e9cf8a9510e58bd590db (diff)
downloadu-boot-odroid-c1-9dccda79460d460be77f8567861c331eb8451046.tar.gz
Merge "Revert "ODROID-C2: adjust logo display init to support all of resolutions"" into odroidc2-v2015.01
-rw-r--r--board/hardkernel/odroidc2/odroidc2.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/board/hardkernel/odroidc2/odroidc2.c b/board/hardkernel/odroidc2/odroidc2.c
index 2972f0201d..aa6cb46d4d 100644
--- a/board/hardkernel/odroidc2/odroidc2.c
+++ b/board/hardkernel/odroidc2/odroidc2.c
@@ -465,17 +465,7 @@ int board_late_init(void)
board_get_mmc_size();
#ifdef CONFIG_DISPLAY_LOGO
- /*
- * The env to define display mode is defined differently
- * on Ubuntu and Android.
- * To distinguish os system, an env "androidopt" will be used.
- */
- if ((NULL == getenv("m")) && (NULL == getenv("hdmimode")))
- run_command("showlogo 1080p60hz", 0);
- else if (NULL == getenv("androidopt"))
- run_command("showlogo ${m}", 0); /* Ubuntu */
- else
- run_command("showlogo ${hdmimode}", 0); /* Android */
+ run_command("showlogo 1080p60hz", 0);
#endif
board_identity();