diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2018-06-26 11:10:51 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2018-07-23 10:56:27 +0200 |
commit | e38adcecca4731acaa51b37b00ee5feee55b6b85 (patch) | |
tree | 919424879bca9075dd6ff58dd5db36c894f61872 | |
parent | 55314608959e9f5977859362d70978a604d387a8 (diff) |
colibri_imx7: add compatible string used in vanilla Linux
Device trees from vanilla Linux do not specify a i.MX 7 specific
compatible string. Make sure to set partitions also when booting
upstream Linux.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
-rw-r--r-- | board/toradex/colibri_imx7/colibri_imx7.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/toradex/colibri_imx7/colibri_imx7.c b/board/toradex/colibri_imx7/colibri_imx7.c index bf691a59f3..f9f488db1c 100644 --- a/board/toradex/colibri_imx7/colibri_imx7.c +++ b/board/toradex/colibri_imx7/colibri_imx7.c @@ -391,6 +391,7 @@ int ft_board_setup(void *blob, bd_t *bd) #if defined(CONFIG_FDT_FIXUP_PARTITIONS) static struct node_info nodes[] = { { "fsl,imx7d-gpmi-nand", MTD_DEV_TYPE_NAND, }, /* NAND flash */ + { "fsl,imx6q-gpmi-nand", MTD_DEV_TYPE_NAND, }, }; /* Update partition nodes using info from mtdparts env var */ |