When beagleboard-X15 is booted, we see the following log: Unidentified board claims BBRDX15_ in eeprom header
This is because of the missing check for x15 (the default) and reports an error for a valid board configuration. fix the same. Signed-off-by: Nishanth Menon <[email protected]> --- based on v2016.09-rc2 board/ti/am57xx/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 927d1364fe46..3c3ec8a74e78 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -342,7 +342,7 @@ static void setup_board_eeprom_env(void) name = "am57xx_evm"; else if (board_is_am572x_idk()) name = "am572x_idk"; - else + else if (!board_is_x15()) printf("Unidentified board claims %s in eeprom header\n", board_ti_get_name()); -- 2.9.1.200.gb1ec08f _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

