We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88af53f commit 7aaa345Copy full SHA for 7aaa345
board/samsung/common/misc.c
@@ -96,12 +96,9 @@ void set_board_info(void)
96
97
#if defined(CONFIG_TARGET_ODROID_XU4) || defined(CONFIG_TARGET_ODROID_XU3)
98
/* save board_name for select dtb */
99
- if (!strncmp("xu3-lite" , bdtype, 8))
100
- setenv("board_name", "xu3l");
101
- else if (!strncmp("xu3", bdtype, 3))
102
- setenv("board_name", "xu3");
103
- else
104
- setenv("board_name", "xu4");
+ setenv("board_name", "xu4");
+ if (!strncmp("xu3", bdtype, 3))
+ setenv("board_name", bdtype);
105
106
/* save board_id_value (adc value) */
107
{
0 commit comments