diff options
author | Lokesh Vutla | 2016-11-25 11:14:20 +0530 |
---|---|---|
committer | Tom Rini | 2016-12-04 13:54:54 -0500 |
commit | f7f9f6be95bc1f484ec118714defd3d6f6f10d4a (patch) | |
tree | e8ca2d8588f7d4dcffa8bbfa2ad367be961d0c8d /include | |
parent | bf43ce6ca65355d8ad262d7bd55f5d05dbf55e25 (diff) |
board: ti: am57xx: Add support for detection of X15 revb1
BeagleBoard-X15 Rev B1 with SR1.1 platform have incompatible changes for HDMI
GPIO requiring new dtb support. This implies we have to properly identify
the platform now as well. Hence provide a different board name for the
Rev B1 variants.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ti_omap5_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/ti_omap5_common.h b/include/configs/ti_omap5_common.h index d6f750f25a7..59ac9b33f95 100644 --- a/include/configs/ti_omap5_common.h +++ b/include/configs/ti_omap5_common.h @@ -89,6 +89,8 @@ "setenv fdtfile dra71-evm.dtb; fi;" \ "if test $board_name = beagle_x15; then " \ "setenv fdtfile am57xx-beagle-x15.dtb; fi;" \ + "if test $board_name = beagle_x15_revb1; then " \ + "setenv fdtfile am57xx-beagle-x15-revb1.dtb; fi;" \ "if test $board_name = am572x_idk; then " \ "setenv fdtfile am572x-idk.dtb; fi;" \ "if test $board_name = am57xx_evm; then " \ |