aboutsummaryrefslogtreecommitdiff
path: root/board/ti/am335x/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/ti/am335x/board.c')
-rw-r--r--board/ti/am335x/board.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c
index dd54f4d457a..7c0545892c9 100644
--- a/board/ti/am335x/board.c
+++ b/board/ti/am335x/board.c
@@ -828,10 +828,16 @@ int board_late_init(void)
if (board_is_bben()) {
char subtype_id = board_ti_get_config()[1];
- if (subtype_id == 'L')
+ switch (subtype_id) {
+ case 'L':
name = "BBELITE";
- else
+ break;
+ case 'I':
+ name = "BBE_EX_WIFI";
+ break;
+ default:
name = "BBEN";
+ }
}
set_board_info_env(name);