projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d76706c
)
board: mx6sabresd: Add board_fit_config_name_match to support FIT in SPL
author
Abel Vesa
<
[email protected]
>
Fri, 1 Feb 2019 16:40:12 +0000
(16:40 +0000)
committer
Stefano Babic
<
[email protected]
>
Fri, 15 Feb 2019 21:01:15 +0000
(22:01 +0100)
This matches one of the following three boards (or fails):
- imx6q-sabresd
- imx6qp-sabresd
- imx6dl-sabresd
Signed-off-by: Abel Vesa <
[email protected]
>
Reviewed-by: Peng Fan <
[email protected]
>
Reviewed-by: Fabio Estevam <
[email protected]
>
Reviewed-by: Lukasz Majewski <
[email protected]
>
board/freescale/mx6sabresd/mx6sabresd.c
patch
|
blob
|
history
diff --git
a/board/freescale/mx6sabresd/mx6sabresd.c
b/board/freescale/mx6sabresd/mx6sabresd.c
index 0183ede148c23d94eccc01de947eac498b685c79..46880952b5681eb7f79da1682e14d3919a1ee29e 100644
(file)
--- a/
board/freescale/mx6sabresd/mx6sabresd.c
+++ b/
board/freescale/mx6sabresd/mx6sabresd.c
@@
-1062,3
+1062,21
@@
void board_init_f(ulong dummy)
board_init_r(NULL, 0);
}
#endif
+
+#ifdef CONFIG_SPL_LOAD_FIT
+int board_fit_config_name_match(const char *name)
+{
+ if (is_mx6dq()) {
+ if (!strcmp(name, "imx6q-sabresd"))
+ return 0;
+ } else if (is_mx6dqp()) {
+ if (!strcmp(name, "imx6qp-sabresd"))
+ return 0;
+ } else if (is_mx6dl()) {
+ if (!strcmp(name, "imx6dl-sabresd"))
+ return 0;
+ }
+
+ return -1;
+}
+#endif