diff options
author | Ian Ray <ian.ray@ge.com> | 2018-04-25 16:57:03 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2018-05-17 11:54:24 +0200 |
commit | 06a3e4389c0c01cf8dbe57ed3a051104282090a1 (patch) | |
tree | 2a3d25f74f77bfb20025cbb2ca4cd9222bb2d7f2 /board | |
parent | 7927ff7a3af203c38ec6b4119c0fcfd194c96ff3 (diff) | |
download | u-boot-06a3e4389c0c01cf8dbe57ed3a051104282090a1.tar.gz u-boot-06a3e4389c0c01cf8dbe57ed3a051104282090a1.tar.bz2 u-boot-06a3e4389c0c01cf8dbe57ed3a051104282090a1.zip |
board: ge: bx50v3: configure video arguments using VPD
Configure video arguments at run-time instead of at compile-time.
Signed-off-by: Ian Ray <ian.ray@ge.com>
Signed-off-by: Nandor Han <nandor.han@ge.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Diffstat (limited to 'board')
-rw-r--r-- | board/ge/bx50v3/bx50v3.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge/bx50v3/bx50v3.c index 953ec60bd1..b2d065c1b8 100644 --- a/board/ge/bx50v3/bx50v3.c +++ b/board/ge/bx50v3/bx50v3.c @@ -803,6 +803,9 @@ int board_late_init(void) add_board_boot_modes(board_boot_modes); #endif + if (is_b850v3()) + env_set("videoargs", "video=DP-1:1024x768@60 video=HDMI-A-1:1024x768@60"); + /* board specific pmic init */ pmic_init(); |