mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
board: ti: am335x: Add support for BBE Extended WiFi
The Sancloud BeagleBone Enhanced Extended WiFi (BBE Extended WiFi) has its own devicetree file and the board can be identified by the 2nd letter of the config string within the common EEPROM. Signed-off-by: Paul Barker <paul.barker@sancloud.com>
This commit is contained in:
parent
cde726442b
commit
a95cd68d51
2 changed files with 10 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -136,6 +136,8 @@
|
|||
"setenv fdtfile am335x-sancloud-bbe.dtb; fi; " \
|
||||
"if test $board_name = BBELITE; then " \
|
||||
"setenv fdtfile am335x-sancloud-bbe-lite.dtb; fi; " \
|
||||
"if test $board_name = BBE_EX_WIFI; then " \
|
||||
"setenv fdtfile am335x-sancloud-bbe-extended-wifi.dtb; fi; " \
|
||||
"if test $board_name = A33515BB; then " \
|
||||
"setenv fdtfile am335x-evm.dtb; fi; " \
|
||||
"if test $board_name = A335X_SK; then " \
|
||||
|
|
Loading…
Reference in a new issue