diff options
| author | Varadarajan Narayanan <quic_varada@quicinc.com> | 2025-05-13 14:47:08 +0530 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2025-05-29 18:35:50 -0600 |
| commit | 8bf3e967f6a999faa4782cf4a81f6aa82d31ead8 (patch) | |
| tree | 1ba7df7e91d6f91f1133b18bce50436da1e1357e /env/env.c | |
| parent | 9a2010941f56929cb28432cc3f4b37a944f55b8e (diff) | |
env: Add support for storing env variables in SCSI devices
Allow SCSI to be able to store environment variables.
Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
Acked-by: Casey Connolly <casey.connolly@linaro.org>
Diffstat (limited to 'env/env.c')
| -rw-r--r-- | env/env.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/env/env.c b/env/env.c index dbaeedc3c3b..7a9c96b4078 100644 --- a/env/env.c +++ b/env/env.c @@ -46,6 +46,9 @@ static enum env_location env_locations[] = { #ifdef CONFIG_ENV_IS_IN_MMC ENVL_MMC, #endif +#ifdef CONFIG_ENV_IS_IN_SCSI + ENVL_SCSI, +#endif #ifdef CONFIG_ENV_IS_IN_NAND ENVL_NAND, #endif |
