diff options
author | Paul Barker <paul.barker@sancloud.com> | 2022-04-11 15:42:00 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-21 09:08:57 -0400 |
commit | cde726442b244029d99965695a25ce198e14fbbb (patch) | |
tree | a94c1859c0faab517997cb35dba3e3a77c5e8d11 /include/configs/am335x_evm.h | |
parent | 1d49b8d73be48bcbdd4e2403ddd7b0153b493565 (diff) | |
download | u-boot-cde726442b244029d99965695a25ce198e14fbbb.tar.gz u-boot-cde726442b244029d99965695a25ce198e14fbbb.tar.bz2 u-boot-cde726442b244029d99965695a25ce198e14fbbb.zip |
board: ti: am335x: Add BBE Lite support
The Sancloud BeagleBone Enhanced Lite (BBE Lite) 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>
Diffstat (limited to 'include/configs/am335x_evm.h')
-rw-r--r-- | include/configs/am335x_evm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index cbb7b91139..746d11b0a9 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -134,6 +134,8 @@ "setenv fdtfile am335x-boneblue.dtb; fi; " \ "if test $board_name = BBEN; then " \ "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 = A33515BB; then " \ "setenv fdtfile am335x-evm.dtb; fi; " \ "if test $board_name = A335X_SK; then " \ |