diff options
author | Dennis Gilmore <dennis@ausil.us> | 2017-08-24 10:49:43 -0500 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2017-09-20 15:34:59 +0200 |
commit | b1e8512e9dbe1771da9c3ad3ddfaf7681318fe0e (patch) | |
tree | 0df6d7d4b9ac61a64c061da150b488d44c9c2fba /include/configs/mx6cuboxi.h | |
parent | 30df9f770b22f3c89d61947950da362117c43c63 (diff) |
detect and setup solidrun hummingboard2
The hummingboard2 is slightly different to the cubox i and to the
hummingboard. The GPIO pin info to probe came from solidruns
for of u-boot on github.
https://github.com/SolidRun/u-boot-imx6/blob/imx6/board/solidrun/mx6_cubox-i/mx6_cubox-i.c#L569-L589
I have tested on a hummingboard-edge witha imx6 solo and 512mb of
ram.
Signed-off-by: Dennis Gilmore <dgilmore@redhat.com>
Diffstat (limited to 'include/configs/mx6cuboxi.h')
-rw-r--r-- | include/configs/mx6cuboxi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 4e12de1212..7fefe8edcb 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -106,6 +106,10 @@ "fi; " \ "fi\0" \ "findfdt="\ + "if test $board_name = HUMMINGBOARD2 && test $board_rev = MX6Q ; then " \ + "setenv fdtfile imx6q-hummingboard2.dtb; fi; " \ + "if test $board_name = HUMMINGBOARD2 && test $board_rev = MX6DL ; then " \ + "setenv fdtfile imx6dl-hummingboard2.dtb; fi; " \ "if test $board_name = HUMMINGBOARD && test $board_rev = MX6Q ; then " \ "setenv fdtfile imx6q-hummingboard.dtb; fi; " \ "if test $board_name = HUMMINGBOARD && test $board_rev = MX6DL ; then " \ |