Commit 9a6a311d2bd12957f84f08a5214db698a35e918d

Authored by Ye Li
Committed by Tom Rini
1 parent 9d47d1316d

env: sata: Add missed env location for SATA boot

The env location label ENVL_ESATA is missed in location tables, so
when we configure the ENV in SATA, u-boot fails to get correct env
location and cause boot hang in board_f.

Signed-off-by: Ye Li <ye.li@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>

Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff

... ... @@ -71,6 +71,9 @@
71 71 #ifdef CONFIG_ENV_IS_IN_REMOTE
72 72 ENVL_REMOTE,
73 73 #endif
  74 +#ifdef CONFIG_ENV_IS_IN_SATA
  75 + ENVL_ESATA,
  76 +#endif
74 77 #ifdef CONFIG_ENV_IS_IN_SPI_FLASH
75 78 ENVL_SPI_FLASH,
76 79 #endif